From 0b4ade4164190fd68e83e65f096af579e3edfd68 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Sat, 16 Nov 2019 18:59:26 +0100 Subject: [PATCH 01/17] test(sketch-lib): add initial tests --- .../sketch-lib/src/lib/format.service.spec.ts | 56 ++++++++++++++++ .../sketch-lib/src/lib/image.service.spec.ts | 64 +++++++++++++++++++ .../sketch-lib/src/lib/layer.service.spec.ts | 36 +++++++++++ projects/sketch-lib/src/lib/layer.service.ts | 2 +- .../sketch-lib/src/lib/shape.service.spec.ts | 30 +++++++++ .../sketch-lib/src/lib/style.service.spec.ts | 35 ++++++++++ .../sketch-lib/src/lib/symbol.service.spec.ts | 54 ++++++++++++++++ .../sketch-lib/src/lib/text.service.spec.ts | 35 ++++++++++ 8 files changed, 311 insertions(+), 1 deletion(-) create mode 100644 projects/sketch-lib/src/lib/format.service.spec.ts create mode 100644 projects/sketch-lib/src/lib/image.service.spec.ts create mode 100644 projects/sketch-lib/src/lib/layer.service.spec.ts create mode 100644 projects/sketch-lib/src/lib/shape.service.spec.ts create mode 100644 projects/sketch-lib/src/lib/style.service.spec.ts create mode 100644 projects/sketch-lib/src/lib/symbol.service.spec.ts create mode 100644 projects/sketch-lib/src/lib/text.service.spec.ts diff --git a/projects/sketch-lib/src/lib/format.service.spec.ts b/projects/sketch-lib/src/lib/format.service.spec.ts new file mode 100644 index 000000000..7e6e9cc44 --- /dev/null +++ b/projects/sketch-lib/src/lib/format.service.spec.ts @@ -0,0 +1,56 @@ +import { TestBed } from '@angular/core/testing'; +import { FormatService } from './format.service'; + +describe('FormatService', () => { + let service: FormatService; + // double spaces + const defaultSpacing = ' '; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [FormatService] + }); + + service = TestBed.get(FormatService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should intdent by double spaces', () => { + const content = `ABC`; + const expectedValue = `${defaultSpacing}ABC`; + const actual = service.indent(1, content); + expect(actual).toBe(expectedValue); + }); + + it('should intdent for a file', () => { + const content = ` + ABC + BC + C + `; + const expectedValue = `${defaultSpacing} + ABC + BC + C + `; + const actual = service.indent(1, content); + expect(actual).toBe(expectedValue); + }); + + it('should normalize a class name', () => { + const className = 'aRealyCoolClassName'; + const expectedClassName = 'a-realy-cool-class-name'; + const actual = service.normalizeName(className); + expect(actual).toBe(expectedClassName); + }); + + it('should convert to pascalCase for a class name', () => { + const className = 'aRealyCoolClassName'; + const expectedClassName = 'ARealyCoolClassName'; + const actual = service.className(className); + expect(actual).toBe(expectedClassName); + }); +}); diff --git a/projects/sketch-lib/src/lib/image.service.spec.ts b/projects/sketch-lib/src/lib/image.service.spec.ts new file mode 100644 index 000000000..6524bbbb8 --- /dev/null +++ b/projects/sketch-lib/src/lib/image.service.spec.ts @@ -0,0 +1,64 @@ +import { TestBed } from '@angular/core/testing'; +import { ImageService } from './image.service'; + +describe('ImageService', () => { + let service: ImageService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ImageService] + }); + + service = TestBed.get(ImageService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a sketch class as bitmap', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBeTruthy(); + }); + + it('should look for the image ref', () => { + const data = { + '_class': 'bitmap', + image: { + _ref: 'A' + }, + images: { + 'A': 'BASE_64_STRING' + } + } as any; + const actual = service.lookup(data, data); + expect(actual).toBe('BASE_64_STRING'); + }); + + it('should aggragate the data based on the layer', () => { + const expectedValue = [{ kind: 'png', language: 'base64', uri: 'assets/.png', value: 'BASE_64_STRING' }]; + const data = { + '_class': 'bitmap', + image: { + _ref: 'A' + }, + images: { + 'A': 'BASE_64_STRING' + } + } as any; + const options = { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }; + const actual = service.aggregate(data, data, options); + expect(actual).toEqual(expectedValue); + }); +}); diff --git a/projects/sketch-lib/src/lib/layer.service.spec.ts b/projects/sketch-lib/src/lib/layer.service.spec.ts new file mode 100644 index 000000000..a21965eff --- /dev/null +++ b/projects/sketch-lib/src/lib/layer.service.spec.ts @@ -0,0 +1,36 @@ +import { TestBed } from '@angular/core/testing'; +import { LayerService } from './layer.service'; + +describe.only('LayerService', () => { + let service: LayerService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [LayerService] + }); + + service = TestBed.get(LayerService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify sketch layers', () => { + const data = { + 'layers': [] + } as any; + const actual = service.identify(data); + expect(actual).toBeTruthy(); + }); + + it('should return the current layer', () => { + const data = { + 'layers': [{ + name: 'random first layer' + }] + } as any; + const actual = service.lookup(data); + expect(actual).toEqual([{ name: 'random first layer' }]); + }); +}); diff --git a/projects/sketch-lib/src/lib/layer.service.ts b/projects/sketch-lib/src/lib/layer.service.ts index 033c13f5d..54bf2aeb8 100644 --- a/projects/sketch-lib/src/lib/layer.service.ts +++ b/projects/sketch-lib/src/lib/layer.service.ts @@ -8,7 +8,7 @@ export class LayerService { return current.layers && Array.isArray(current.layers); } - lookup(current: SketchMSLayer, data: SketchMSData) { + lookup(current: SketchMSLayer) { return current.layers as any; } } diff --git a/projects/sketch-lib/src/lib/shape.service.spec.ts b/projects/sketch-lib/src/lib/shape.service.spec.ts new file mode 100644 index 000000000..95d199fee --- /dev/null +++ b/projects/sketch-lib/src/lib/shape.service.spec.ts @@ -0,0 +1,30 @@ +import { TestBed } from '@angular/core/testing'; +import { ShapeService } from './shape.service'; + +describe.only('ShapeService', () => { + let service: ShapeService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ShapeService] + }); + + service = TestBed.get(ShapeService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should handle points to x y numbers', () => { + const data = { + frame: { + width: '0', + height: '0' + } + } as any; + + const actual = service.parsePoint('0.0043562068495639136, 0.52083333333333326', 1, data); + expect(actual).toEqual({ 'x': 1, 'y': 1 }); + }); +}); diff --git a/projects/sketch-lib/src/lib/style.service.spec.ts b/projects/sketch-lib/src/lib/style.service.spec.ts new file mode 100644 index 000000000..afea01d30 --- /dev/null +++ b/projects/sketch-lib/src/lib/style.service.spec.ts @@ -0,0 +1,35 @@ +import { TestBed } from '@angular/core/testing'; +import { StyleService } from './style.service'; +describe.only('StyleService', () => { + let service: StyleService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [StyleService] + }); + + service = TestBed.get(StyleService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should return parse colors', () => { + const color = { alpha: 1, red: 1, green: 2, blue: 3 } as SketchMSColor; + const actual = service.parseColor(color); + expect(actual).toEqual({ 'alpha': 1, 'blue': 765, 'green': 510, 'red': 255 }); + }); + + it('should parse color as rgb', () => { + const color = { alpha: 0, red: 0, green: 0, blue: 0} as SketchMSColor; + const actual = service.parseColorAsRgba(color); + expect(actual).toEqual('rgba(0,0,0,0.00)'); + }); + + it('should parse color as hex', () => { + const color = { alpha: 0, red: 0, green: 0, blue: 0} as SketchMSColor; + const actual = service.parseColorAsHex(color); + expect(actual).toEqual('#00000000'); + }); +}); diff --git a/projects/sketch-lib/src/lib/symbol.service.spec.ts b/projects/sketch-lib/src/lib/symbol.service.spec.ts new file mode 100644 index 000000000..2d1dcdf02 --- /dev/null +++ b/projects/sketch-lib/src/lib/symbol.service.spec.ts @@ -0,0 +1,54 @@ +import { TestBed } from '@angular/core/testing'; +import { SymbolService } from './symbol.service'; + +describe.only('SymbolService', () => { + let service: SymbolService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [SymbolService] + }); + + service = TestBed.get(SymbolService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify current layer as a symbol', () => { + const data = { + '_class': 'symbolInstance' + } as any; + const actual = service.identify(data); + expect(actual).toBeTruthy(); + }); + + it('should look for the symbol', () => { + const data = { + '_class': 'symbolInstance', + symbolID: 'ID1', + document: { + foreignSymbols: [ + { symbolMaster: { symbolID: 'ID1' } }, + { symbolMaster: { symbolID: 'ID2' } } + ] + } + } as any; + const actual = service.lookup(data, data); + expect(actual).toEqual({ symbolID: 'ID1' }); + }); + + it('should not find the symbol with incorrect ref', () => { + const data = { + '_class': 'symbolInstance', + symbolID: 'ID2', + document: { + foreignSymbols: [{ symbolMaster: { symbolID: 'ID1' } }] + } + } as any; + const actual = service.lookup(data, data); + expect(actual).toBe(undefined); + }); + +}); diff --git a/projects/sketch-lib/src/lib/text.service.spec.ts b/projects/sketch-lib/src/lib/text.service.spec.ts new file mode 100644 index 000000000..9b4f5190f --- /dev/null +++ b/projects/sketch-lib/src/lib/text.service.spec.ts @@ -0,0 +1,35 @@ +import { TestBed } from '@angular/core/testing'; +import { TextService } from './text.service'; + +describe.only('TextService', () => { + let service: TextService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [TextService] + }); + + service = TestBed.get(TextService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify current layer as text', () => { + const data = { + '_class': 'text' + } as any; + const actual = service.identify(data); + expect(actual).toBeTruthy(); + }); + + it('should provide the attribute string', () => { + const data = { + '_class': 'text', + attributedString: { string: 'attr' } + } as any; + const actual = service.lookup(data); + expect(actual).toEqual('attr'); + }); +}); From 376b307856f51fed2965e3cdd07e2808ee81f4b5 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Sat, 16 Nov 2019 19:56:24 +0100 Subject: [PATCH 02/17] test(react-codegen): add initial tests --- .../src/lib/react-codegen.service.spec.ts | 53 +++++++++++++++++++ .../src/lib/react-docgen.service.spec.ts | 31 +++++++++++ .../sketch-lib/src/lib/layer.service.spec.ts | 2 +- .../sketch-lib/src/lib/shape.service.spec.ts | 2 +- .../sketch-lib/src/lib/style.service.spec.ts | 2 +- .../sketch-lib/src/lib/symbol.service.spec.ts | 2 +- .../sketch-lib/src/lib/text.service.spec.ts | 2 +- 7 files changed, 89 insertions(+), 5 deletions(-) create mode 100644 projects/react-codegen/src/lib/react-codegen.service.spec.ts create mode 100644 projects/react-codegen/src/lib/react-docgen.service.spec.ts diff --git a/projects/react-codegen/src/lib/react-codegen.service.spec.ts b/projects/react-codegen/src/lib/react-codegen.service.spec.ts new file mode 100644 index 000000000..54614cc03 --- /dev/null +++ b/projects/react-codegen/src/lib/react-codegen.service.spec.ts @@ -0,0 +1,53 @@ +import { TestBed } from '@angular/core/testing'; +import { ReactCodeGenService } from './react-codegen.service'; + +describe('ReactCodeGenService', () => { + let service: ReactCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ReactCodeGenService] + }); + + service = TestBed.get(ReactCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + xit('should provide a visti', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.compute(data,data); + expect(actual).toBe('a_context'); + }); + +}); \ No newline at end of file diff --git a/projects/react-codegen/src/lib/react-docgen.service.spec.ts b/projects/react-codegen/src/lib/react-docgen.service.spec.ts new file mode 100644 index 000000000..a1a19259a --- /dev/null +++ b/projects/react-codegen/src/lib/react-docgen.service.spec.ts @@ -0,0 +1,31 @@ +import { TestBed } from '@angular/core/testing'; +import { ReactDocGenService } from './react-docgen.service'; + +describe('ReactDocGenService', () => { + let service: ReactDocGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ReactDocGenService] + }); + + service = TestBed.get(ReactDocGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have all the correct propertys', () => { + const data = { + meta: { app: 'THE_APP' } + } as any; + const actual = service.aggregate(data); + + expect(actual[0].kind).toEqual('text'); + expect(actual[0].language).toEqual('markdown'); + expect(actual[0].uri).toEqual('README.md'); + // WE GET THE FIRST LINE OF THE README + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP Vue module'); + }); +}); diff --git a/projects/sketch-lib/src/lib/layer.service.spec.ts b/projects/sketch-lib/src/lib/layer.service.spec.ts index a21965eff..b52a46fd1 100644 --- a/projects/sketch-lib/src/lib/layer.service.spec.ts +++ b/projects/sketch-lib/src/lib/layer.service.spec.ts @@ -1,7 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { LayerService } from './layer.service'; -describe.only('LayerService', () => { +describe('LayerService', () => { let service: LayerService; beforeEach(() => { diff --git a/projects/sketch-lib/src/lib/shape.service.spec.ts b/projects/sketch-lib/src/lib/shape.service.spec.ts index 95d199fee..4ecdd1ce8 100644 --- a/projects/sketch-lib/src/lib/shape.service.spec.ts +++ b/projects/sketch-lib/src/lib/shape.service.spec.ts @@ -1,7 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { ShapeService } from './shape.service'; -describe.only('ShapeService', () => { +describe('ShapeService', () => { let service: ShapeService; beforeEach(() => { diff --git a/projects/sketch-lib/src/lib/style.service.spec.ts b/projects/sketch-lib/src/lib/style.service.spec.ts index afea01d30..078f1b929 100644 --- a/projects/sketch-lib/src/lib/style.service.spec.ts +++ b/projects/sketch-lib/src/lib/style.service.spec.ts @@ -1,6 +1,6 @@ import { TestBed } from '@angular/core/testing'; import { StyleService } from './style.service'; -describe.only('StyleService', () => { +describe('StyleService', () => { let service: StyleService; beforeEach(() => { diff --git a/projects/sketch-lib/src/lib/symbol.service.spec.ts b/projects/sketch-lib/src/lib/symbol.service.spec.ts index 2d1dcdf02..cb1f883c5 100644 --- a/projects/sketch-lib/src/lib/symbol.service.spec.ts +++ b/projects/sketch-lib/src/lib/symbol.service.spec.ts @@ -1,7 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { SymbolService } from './symbol.service'; -describe.only('SymbolService', () => { +describe('SymbolService', () => { let service: SymbolService; beforeEach(() => { diff --git a/projects/sketch-lib/src/lib/text.service.spec.ts b/projects/sketch-lib/src/lib/text.service.spec.ts index 9b4f5190f..023845e6b 100644 --- a/projects/sketch-lib/src/lib/text.service.spec.ts +++ b/projects/sketch-lib/src/lib/text.service.spec.ts @@ -1,7 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { TextService } from './text.service'; -describe.only('TextService', () => { +describe('TextService', () => { let service: TextService; beforeEach(() => { From a51d6917c613b6dd6be826dcc0052000bb022597 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Sat, 16 Nov 2019 20:05:31 +0100 Subject: [PATCH 03/17] fix: remove unneeded property --- projects/angular-codegen/src/lib/angular-codegen.service.ts | 2 +- .../src/lib/element/angular-element-codegen.service.ts | 2 +- .../lit-element-codegen/src/lib/lit-element-codegen.service.ts | 2 +- projects/react-codegen/src/lib/react-codegen.service.ts | 2 +- projects/stencil-codegen/src/lib/stencil-codegen.service.ts | 2 +- projects/vue-codegen/src/lib/vue-codegen.service.ts | 2 +- projects/web-codegen/src/lib/web-codegen.service.ts | 2 +- .../src/lib/web-component-codegen.service.ts | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/projects/angular-codegen/src/lib/angular-codegen.service.ts b/projects/angular-codegen/src/lib/angular-codegen.service.ts index 9ec41debc..6f4341572 100644 --- a/projects/angular-codegen/src/lib/angular-codegen.service.ts +++ b/projects/angular-codegen/src/lib/angular-codegen.service.ts @@ -97,7 +97,7 @@ export class AngularCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/angular-codegen/src/lib/element/angular-element-codegen.service.ts b/projects/angular-codegen/src/lib/element/angular-element-codegen.service.ts index 11bbb1ba2..7c971c1f9 100644 --- a/projects/angular-codegen/src/lib/element/angular-element-codegen.service.ts +++ b/projects/angular-codegen/src/lib/element/angular-element-codegen.service.ts @@ -72,7 +72,7 @@ export class AngularElementCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/lit-element-codegen/src/lib/lit-element-codegen.service.ts b/projects/lit-element-codegen/src/lib/lit-element-codegen.service.ts index 1ff4dd137..5176da737 100644 --- a/projects/lit-element-codegen/src/lib/lit-element-codegen.service.ts +++ b/projects/lit-element-codegen/src/lib/lit-element-codegen.service.ts @@ -72,7 +72,7 @@ export class LitElementCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/react-codegen/src/lib/react-codegen.service.ts b/projects/react-codegen/src/lib/react-codegen.service.ts index 4a444f293..e128bcbea 100644 --- a/projects/react-codegen/src/lib/react-codegen.service.ts +++ b/projects/react-codegen/src/lib/react-codegen.service.ts @@ -72,7 +72,7 @@ export class ReactCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/stencil-codegen/src/lib/stencil-codegen.service.ts b/projects/stencil-codegen/src/lib/stencil-codegen.service.ts index a80abc9ac..09f94d3ee 100644 --- a/projects/stencil-codegen/src/lib/stencil-codegen.service.ts +++ b/projects/stencil-codegen/src/lib/stencil-codegen.service.ts @@ -72,7 +72,7 @@ export class StencilCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/vue-codegen/src/lib/vue-codegen.service.ts b/projects/vue-codegen/src/lib/vue-codegen.service.ts index f16fc5c6b..4d54faf13 100644 --- a/projects/vue-codegen/src/lib/vue-codegen.service.ts +++ b/projects/vue-codegen/src/lib/vue-codegen.service.ts @@ -72,7 +72,7 @@ export class VueCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/web-codegen/src/lib/web-codegen.service.ts b/projects/web-codegen/src/lib/web-codegen.service.ts index a4eaca93d..4b234aec1 100644 --- a/projects/web-codegen/src/lib/web-codegen.service.ts +++ b/projects/web-codegen/src/lib/web-codegen.service.ts @@ -73,7 +73,7 @@ export class WebCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } diff --git a/projects/web-component-codegen/src/lib/web-component-codegen.service.ts b/projects/web-component-codegen/src/lib/web-component-codegen.service.ts index edf2739cc..1f1ec4656 100644 --- a/projects/web-component-codegen/src/lib/web-component-codegen.service.ts +++ b/projects/web-component-codegen/src/lib/web-component-codegen.service.ts @@ -72,7 +72,7 @@ export class WebComponentCodeGenService { options: WebCodeGenOptions ) { return this.layerService - .lookup(current, data) + .lookup(current) .flatMap(layer => this.visitContent(layer, data, options)); } From cabe01158234b7c6739e6806df7e97afb336f56a Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Sat, 16 Nov 2019 20:07:29 +0100 Subject: [PATCH 04/17] style: fix linting issue --- projects/react-codegen/src/lib/react-codegen.service.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/react-codegen/src/lib/react-codegen.service.spec.ts b/projects/react-codegen/src/lib/react-codegen.service.spec.ts index 54614cc03..43932e428 100644 --- a/projects/react-codegen/src/lib/react-codegen.service.spec.ts +++ b/projects/react-codegen/src/lib/react-codegen.service.spec.ts @@ -46,8 +46,8 @@ describe('ReactCodeGenService', () => { 'web': 'a_context', '_class': 'random' } as any; - const actual = service.compute(data,data); + const actual = service.compute(data, data); expect(actual).toBe('a_context'); }); -}); \ No newline at end of file +}); From bf39037aed3193290ebcdadc44e77d6703e58c1f Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Mon, 18 Nov 2019 20:44:25 +0100 Subject: [PATCH 05/17] test(react-aggragator): add test --- .../src/lib/react-aggregator.service.spec.ts | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 projects/react-codegen/src/lib/react-aggregator.service.spec.ts diff --git a/projects/react-codegen/src/lib/react-aggregator.service.spec.ts b/projects/react-codegen/src/lib/react-aggregator.service.spec.ts new file mode 100644 index 000000000..9bf9a1e21 --- /dev/null +++ b/projects/react-codegen/src/lib/react-aggregator.service.spec.ts @@ -0,0 +1,47 @@ +import { TestBed } from '@angular/core/testing'; +import { ReactAggregatorService } from './react-aggregator.service'; + +describe.only('ReactCodeGenService', () => { + let service: ReactAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [ReactAggregatorService] + }); + + service = TestBed.get(ReactAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic react component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + + } + } as any; + const aggregated = service.aggregate(data, { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }); + const component = aggregated[0]; + const test = aggregated[1]; + const css = aggregated[2]; + expect(aggregated.length).toEqual(3); + expect(component.kind).toEqual('react'); + expect(component.language).toEqual('javascript'); + expect(test.kind).toEqual('react'); + expect(test.language).toEqual('javascript'); + expect(css.kind).toEqual('react'); + expect(css.language).toEqual('css'); + }); +}); From 88c0ca15627bdc71c2fa9981e5f8552ebf43f082 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Wed, 20 Nov 2019 07:57:06 +0100 Subject: [PATCH 06/17] test: finished react and lit-element projects --- .vscode/settings.json | 1 + .../lit-element-aggregator.service.spec.ts | 60 +++++++++++++++++++ .../lib/lit-element-codegen.service.spec.ts | 53 ++++++++++++++++ .../lib/lit-element-docgen.service.spec.ts | 31 ++++++++++ .../src/lib/react-aggregator.service.spec.ts | 31 ++++++++-- .../src/lib/react-docgen.service.spec.ts | 2 +- .../src/lib/react-docgen.service.ts | 2 +- 7 files changed, 173 insertions(+), 7 deletions(-) create mode 100644 projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts create mode 100644 projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts create mode 100644 projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index fb4d6d39c..b839913a7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,7 @@ { "workbench.colorCustomizations": { "activityBar.background": "#ff5f93", + "activityBar.activeBorder": "#53ff00", "activityBar.foreground": "#15202b", "activityBar.inactiveForeground": "#15202b99", "activityBarBadge.background": "#53ff00", diff --git a/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts b/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts new file mode 100644 index 000000000..98e1d6d33 --- /dev/null +++ b/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts @@ -0,0 +1,60 @@ +import { TestBed } from '@angular/core/testing'; +import { LitElementAggregatorService } from './lit-element-aggregator.service'; + +describe('ReactCodeGenService', () => { + let service: LitElementAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [LitElementAggregatorService] + }); + + service = TestBed.get(LitElementAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have one file for a basic lit element component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }); + + expect(aggregated.length).toEqual(1); + + const [component] = aggregated; + expect(component.kind).toEqual('litElement'); + expect(component.language).toEqual('javascript'); + expect(component.value.indexOf('attr') >= 0).toBeTruthy(); + expect(component.uri).toBe('components/abc.js'); + }); +}); diff --git a/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts b/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts new file mode 100644 index 000000000..e998c00a8 --- /dev/null +++ b/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts @@ -0,0 +1,53 @@ +import { TestBed } from '@angular/core/testing'; +import { LitElementCodeGenService } from './lit-element-codegen.service'; + +describe('LitElementCodeGenService', () => { + let service: LitElementCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [LitElementCodeGenService] + }); + + service = TestBed.get(LitElementCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + xit('should provide a visti', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.compute(data, data); + expect(actual).toBe('a_context'); + }); + +}); diff --git a/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts b/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts new file mode 100644 index 000000000..cab08c7ac --- /dev/null +++ b/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts @@ -0,0 +1,31 @@ +import { TestBed } from '@angular/core/testing'; +import { LitElementDocGenService } from './lit-element-docgen.service'; + +describe('ReactDocGenService', () => { + let service: LitElementDocGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [LitElementDocGenService] + }); + + service = TestBed.get(LitElementDocGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have all the correct propertys', () => { + const data = { + meta: { app: 'THE_APP' } + } as any; + const actual = service.aggregate(data); + + expect(actual[0].kind).toEqual('text'); + expect(actual[0].language).toEqual('markdown'); + expect(actual[0].uri).toEqual('README.md'); + // WE GET THE FIRST LINE OF THE README + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP Web Components built with LitElement'); + }); +}); diff --git a/projects/react-codegen/src/lib/react-aggregator.service.spec.ts b/projects/react-codegen/src/lib/react-aggregator.service.spec.ts index 9bf9a1e21..8064ab277 100644 --- a/projects/react-codegen/src/lib/react-aggregator.service.spec.ts +++ b/projects/react-codegen/src/lib/react-aggregator.service.spec.ts @@ -1,7 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { ReactAggregatorService } from './react-aggregator.service'; -describe.only('ReactCodeGenService', () => { +describe('ReactCodeGenService', () => { let service: ReactAggregatorService; beforeEach(() => { @@ -21,8 +21,23 @@ describe.only('ReactCodeGenService', () => { '_class': 'rectangle', 'name': 'abc', 'web': { + }, - } + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] } as any; const aggregated = service.aggregate(data, { textTagName: 'span', @@ -33,15 +48,21 @@ describe.only('ReactCodeGenService', () => { componentDir: 'components', assetDir: 'assets', }); - const component = aggregated[0]; - const test = aggregated[1]; - const css = aggregated[2]; + expect(aggregated.length).toEqual(3); + + const [component, test, css] = aggregated; expect(component.kind).toEqual('react'); expect(component.language).toEqual('javascript'); + expect(component.value.indexOf('attr') >= 0).toBeTruthy(); + expect(component.uri).toEqual('components/abc.jsx'); + expect(component.value.indexOf('span >attr') >= 0).toEqual(true); expect(test.kind).toEqual('react'); + expect(test.uri).toEqual('components/abc.spec.js'); expect(test.language).toEqual('javascript'); expect(css.kind).toEqual('react'); expect(css.language).toEqual('css'); + expect(css.uri).toEqual('components/abc.css'); + expect(css.value.indexOf('.aclass') >= 0).toEqual(true); }); }); diff --git a/projects/react-codegen/src/lib/react-docgen.service.spec.ts b/projects/react-codegen/src/lib/react-docgen.service.spec.ts index a1a19259a..e0e6c85a3 100644 --- a/projects/react-codegen/src/lib/react-docgen.service.spec.ts +++ b/projects/react-codegen/src/lib/react-docgen.service.spec.ts @@ -26,6 +26,6 @@ describe('ReactDocGenService', () => { expect(actual[0].language).toEqual('markdown'); expect(actual[0].uri).toEqual('README.md'); // WE GET THE FIRST LINE OF THE README - expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP Vue module'); + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP react module'); }); }); diff --git a/projects/react-codegen/src/lib/react-docgen.service.ts b/projects/react-codegen/src/lib/react-docgen.service.ts index 73ed42bb4..db06de582 100644 --- a/projects/react-codegen/src/lib/react-docgen.service.ts +++ b/projects/react-codegen/src/lib/react-docgen.service.ts @@ -17,7 +17,7 @@ export class ReactDocGenService { private renderReadme(name: string) { return `\ -## How to use the ${name} Vue module +## How to use the ${name} react module Import and use it with ReactDOM : From c6f776ea7e851283f896bd025c949d17dc7e5f42 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Wed, 20 Nov 2019 19:39:21 +0100 Subject: [PATCH 07/17] test: added extra tests for css --- .../css-codegen.service.spec.ts.snap | 41 + .../src/lib/css-agregator.service.spec.ts | 56 + .../src/lib/css-codegen.service.spec.ts | 55 + .../src/lib/css-context.service.spec.ts | 85 + .../src/lib/css-parser.service.spec.ts | 18 + .../lit-element-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../lib/lit-element-codegen.service.spec.ts | 34 +- .../react-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../src/lib/react-codegen.service.spec.ts | 32 +- tests/integration/sketch-parsing.spec.ts | 69 +- tests/test-utils.ts | 56 + 11 files changed, 116806 insertions(+), 78 deletions(-) create mode 100644 projects/css-codegen/src/lib/__snapshots__/css-codegen.service.spec.ts.snap create mode 100644 projects/css-codegen/src/lib/css-agregator.service.spec.ts create mode 100644 projects/css-codegen/src/lib/css-codegen.service.spec.ts create mode 100644 projects/css-codegen/src/lib/css-context.service.spec.ts create mode 100644 projects/css-codegen/src/lib/css-parser.service.spec.ts create mode 100644 projects/lit-element-codegen/src/lib/__snapshots__/lit-element-codegen.service.spec.ts.snap create mode 100644 projects/react-codegen/src/lib/__snapshots__/react-codegen.service.spec.ts.snap create mode 100644 tests/test-utils.ts diff --git a/projects/css-codegen/src/lib/__snapshots__/css-codegen.service.spec.ts.snap b/projects/css-codegen/src/lib/__snapshots__/css-codegen.service.spec.ts.snap new file mode 100644 index 000000000..d4b1dc13c --- /dev/null +++ b/projects/css-codegen/src/lib/__snapshots__/css-codegen.service.spec.ts.snap @@ -0,0 +1,41 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`CssCodeGenService should provide the context 1`] = ` +Array [ + Object { + "kind": "css", + "language": "css", + "uri": "components/button.css", + "value": ":host { + display: block; + position: relative; +} + +.undefined { + background-color: rgba(0,150,136,1.00); + box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12); + height: 36px; + left: 0px; + top: 0px; + width: 94px; +} + +.undefined { + color: rgba(255,255,255,1.00); + font-family: 'Roboto-Medium', 'Roboto', 'sans-serif'; + font-size: 14px; + height: 16px; + left: 16.5px; + top: 10px; + width: 61px; +} + +.undefined, .undefined { + display: block; + position: absolute; + visibility: visible; +} +", + }, +] +`; diff --git a/projects/css-codegen/src/lib/css-agregator.service.spec.ts b/projects/css-codegen/src/lib/css-agregator.service.spec.ts new file mode 100644 index 000000000..f3f1b5c58 --- /dev/null +++ b/projects/css-codegen/src/lib/css-agregator.service.spec.ts @@ -0,0 +1,56 @@ +import { TestBed } from '@angular/core/testing'; +import { CssAggregatorService } from './css-aggregator.service'; + +describe('ReactCodeGenService', () => { + let service: CssAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [CssAggregatorService] + }); + + service = TestBed.get(CssAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic react component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + name: 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + generateClassName: true, + componentDir: 'folder' + }); + + expect(aggregated.length).toEqual(1); + + const [component] = aggregated; + expect(component.kind).toEqual('css'); + expect(component.language).toEqual('css'); + expect(component.value.indexOf('.aclass') >= 0).toBeTruthy(); + expect(component.uri).toEqual('folder/abc.css'); + }); +}); diff --git a/projects/css-codegen/src/lib/css-codegen.service.spec.ts b/projects/css-codegen/src/lib/css-codegen.service.spec.ts new file mode 100644 index 000000000..42c1e2bda --- /dev/null +++ b/projects/css-codegen/src/lib/css-codegen.service.spec.ts @@ -0,0 +1,55 @@ +import { TestBed } from '@angular/core/testing'; +import { CssCodeGenService } from './css-codegen.service'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; + + +describe('CssCodeGenService', () => { + let service: CssCodeGenService; + let sketch: SketchMSData; + beforeEach(async () => { + TestBed.configureTestingModule({ + providers: [CssCodeGenService] + }); + + service = TestBed.get(CssCodeGenService); + const version = VERSION_LIST[0]; + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + const fileName = fileNames[1]; + const data = await loadSketch(version, fileName); + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + + sketch = data; + }); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should provide the context', () => { + const data = sketch.pages[0].layers[0]; + expect(service.context(data)).toEqual({ + 'rules': + { + 'display': 'block', + 'height': '36px', + 'left': '0px', + 'position': 'absolute', + 'top': '0px', + 'visibility': 'visible', + 'width': '94px' + } + }); + }); + + it('should provide the context', () => { + const data = sketch.pages[0].layers[0]; + expect(service.aggregate(data)).toMatchSnapshot(); + }); + +}); diff --git a/projects/css-codegen/src/lib/css-context.service.spec.ts b/projects/css-codegen/src/lib/css-context.service.spec.ts new file mode 100644 index 000000000..0e6e37479 --- /dev/null +++ b/projects/css-codegen/src/lib/css-context.service.spec.ts @@ -0,0 +1,85 @@ +import { TestBed } from '@angular/core/testing'; +import { CssContextService } from './css-context.service'; + +describe('CssContextService', () => { + let service: CssContextService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [CssContextService] + }); + + service = TestBed.get(CssContextService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should idenitfy a variaty of classes', () => { + [ + 'rect', + 'page', + 'rectangle', + 'group', + 'oval', + 'slice', + 'MSImmutableHotspotLayer', + 'text', + 'triangle', + 'shapePath', + 'shapeGroup' + ].forEach(item => { + const data = { + _class: item + } as any; + expect(service.identify(data)).toBeTruthy(); + }); + }); + + + it('should provide css classes', () => { + const data = { + _class: 'name', + css: { + attr: 'random' + } + } as any; + expect(service.of(data)).toEqual({ attr: 'random' }); + }); + + it('should add css classes', () => { + const data = { + _class: 'name', + css: { + attr: 'random' + } + } as any; + service.put(data, { className: 'extra', rules: { width: '1' } }); + + expect(service.of(data)).toEqual({ + attr: 'random', 'className': 'extra', + 'rules': { + 'width': '1', + }, + }); + }); + it('should clear css classes', () => { + const data = { + _class: 'name', + web: { + attr: 'random' + } + } as any; + const expected_data = { + _class: 'name', + } as any; + + service.clear(data); + + expect(expected_data).toEqual(data); + }); + + + +}); diff --git a/projects/css-codegen/src/lib/css-parser.service.spec.ts b/projects/css-codegen/src/lib/css-parser.service.spec.ts new file mode 100644 index 000000000..c7db4e134 --- /dev/null +++ b/projects/css-codegen/src/lib/css-parser.service.spec.ts @@ -0,0 +1,18 @@ +import { TestBed } from '@angular/core/testing'; +import { CssParserService } from './css-parser.service'; + +describe('CssParserService', () => { + let service: CssParserService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [CssParserService] + }); + + service = TestBed.get(CssParserService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); +}); diff --git a/projects/lit-element-codegen/src/lib/__snapshots__/lit-element-codegen.service.spec.ts.snap b/projects/lit-element-codegen/src/lib/__snapshots__/lit-element-codegen.service.spec.ts.snap new file mode 100644 index 000000000..77fa9b6d0 --- /dev/null +++ b/projects/lit-element-codegen/src/lib/__snapshots__/lit-element-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`LitElementCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-date-picker.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-date-picker.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`LitElementCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on lit-element 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts b/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts index e998c00a8..9a38b35b9 100644 --- a/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts +++ b/projects/lit-element-codegen/src/lib/lit-element-codegen.service.spec.ts @@ -1,7 +1,9 @@ import { TestBed } from '@angular/core/testing'; +import { readdirSync } from 'fs'; +import { loadSketch, SKETCH_PATH, VERSION_LIST } from '../../../../tests/test-utils'; import { LitElementCodeGenService } from './lit-element-codegen.service'; -describe('LitElementCodeGenService', () => { +describe.only('LitElementCodeGenService', () => { let service: LitElementCodeGenService; beforeEach(() => { @@ -41,13 +43,27 @@ describe('LitElementCodeGenService', () => { expect(actual).toBe('a_context'); }); - xit('should provide a visti', () => { - const data = { - 'web': 'a_context', - '_class': 'random' - } as any; - const actual = service.compute(data, data); - expect(actual).toBe('a_context'); - }); + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on lit-element`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); }); diff --git a/projects/react-codegen/src/lib/__snapshots__/react-codegen.service.spec.ts.snap b/projects/react-codegen/src/lib/__snapshots__/react-codegen.service.spec.ts.snap new file mode 100644 index 000000000..9c1acbd85 --- /dev/null +++ b/projects/react-codegen/src/lib/__snapshots__/react-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`ReactCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-date-picker.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-date-picker.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`ReactCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on react 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/react-codegen/src/lib/react-codegen.service.spec.ts b/projects/react-codegen/src/lib/react-codegen.service.spec.ts index 43932e428..9dbbd1252 100644 --- a/projects/react-codegen/src/lib/react-codegen.service.spec.ts +++ b/projects/react-codegen/src/lib/react-codegen.service.spec.ts @@ -1,5 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { ReactCodeGenService } from './react-codegen.service'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; describe('ReactCodeGenService', () => { let service: ReactCodeGenService; @@ -41,13 +43,27 @@ describe('ReactCodeGenService', () => { expect(actual).toBe('a_context'); }); - xit('should provide a visti', () => { - const data = { - 'web': 'a_context', - '_class': 'random' - } as any; - const actual = service.compute(data, data); - expect(actual).toBe('a_context'); - }); + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on react`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); }); diff --git a/tests/integration/sketch-parsing.spec.ts b/tests/integration/sketch-parsing.spec.ts index 9ce938b22..195847d8b 100644 --- a/tests/integration/sketch-parsing.spec.ts +++ b/tests/integration/sketch-parsing.spec.ts @@ -1,64 +1,11 @@ -import { NO_ERRORS_SCHEMA } from "@angular/core"; -import { async, TestBed } from "@angular/core/testing"; -import { readdirSync, readFile } from "fs"; -import * as jszip from "jszip"; -import { WebCodeGenService } from "@xlayers/web-codegen"; - -const VERSION_LIST = [52, 53]; -const SKETCH_PATH = "./src/assets/demos/sketchapp"; - -async function loadSketch(version, fileName) { - const _data = { - pages: [], - previews: [], - document: {}, - user: {}, - meta: {} - } as SketchMSData; - - const sketch = await new Promise((resolve, reject) => { - readFile(`${SKETCH_PATH}/${version}/${fileName}`, (err, file) => { - if (err) { - reject(err); - } else { - resolve(file); - } - }); - }); - - const zip = await jszip.loadAsync(sketch); - - const zips = []; - zip.forEach((relativePath, zipEntry) => { - zips.push({ relativePath, zipEntry }); - }); - - await Promise.all( - zips.map(({ relativePath, zipEntry }) => { - return new Promise(resolve => { - if (relativePath.startsWith("pages/")) { - zipEntry.async("string").then(content => { - _data.pages.push(JSON.parse(content)); - resolve(); - }); - } else if ( - ["meta.json", "document.json", "user.json"].includes(relativePath) - ) { - zipEntry.async("string").then(content => { - _data[relativePath.replace(".json", "")] = JSON.parse(content); - resolve(); - }); - } else { - resolve(); - } - }); - }) - ); - - return _data; -} - -describe("sketch parser", () => { +import { NO_ERRORS_SCHEMA } from '@angular/core'; +import { async, TestBed } from '@angular/core/testing'; +import { readdirSync, readFile } from 'fs'; +import * as jszip from 'jszip'; +import { WebCodeGenService } from '@xlayers/web-codegen'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../test-utils'; + +describe('sketch parser', () => { let webCodeGen: WebCodeGenService; beforeEach(async(() => { diff --git a/tests/test-utils.ts b/tests/test-utils.ts new file mode 100644 index 000000000..d44fff228 --- /dev/null +++ b/tests/test-utils.ts @@ -0,0 +1,56 @@ +import { readdirSync, readFile } from 'fs'; +import * as jszip from 'jszip'; + +export const VERSION_LIST = [52, 53]; +export const SKETCH_PATH = './src/assets/demos/sketchapp'; + +export async function loadSketch(version, fileName) { + const _data = { + pages: [], + previews: [], + document: {}, + user: {}, + meta: {} + } as SketchMSData; + + const sketch = await new Promise((resolve, reject) => { + readFile(`${SKETCH_PATH}/${version}/${fileName}`, (err, file) => { + if (err) { + reject(err); + } else { + resolve(file); + } + }); + }); + + const zip = await jszip.loadAsync(sketch); + + const zips = []; + zip.forEach((relativePath, zipEntry) => { + zips.push({ relativePath, zipEntry }); + }); + + await Promise.all( + zips.map(({ relativePath, zipEntry }) => { + return new Promise(resolve => { + if (relativePath.startsWith('pages/')) { + zipEntry.async('string').then(content => { + _data.pages.push(JSON.parse(content)); + resolve(); + }); + } else if ( + ['meta.json', 'document.json', 'user.json'].includes(relativePath) + ) { + zipEntry.async('string').then(content => { + _data[relativePath.replace('.json', '')] = JSON.parse(content); + resolve(); + }); + } else { + resolve(); + } + }); + }) + ); + + return _data; +} From d587b7cb83c590322cd7ee6cfa19b3ce6bd6a287 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Fri, 22 Nov 2019 13:17:21 +0100 Subject: [PATCH 08/17] test: added test for angular-codegen --- .../angular-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../lib/angular-aggregator.service.spec.ts | 72 + .../src/lib/angular-codegen.service.spec.ts | 69 + .../src/lib/angular-docgen.service.spec.ts | 31 + .../src/lib/angular-docgen.service.ts | 2 +- 5 files changed, 58392 insertions(+), 1 deletion(-) create mode 100644 projects/angular-codegen/src/lib/__snapshots__/angular-codegen.service.spec.ts.snap create mode 100644 projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts create mode 100644 projects/angular-codegen/src/lib/angular-codegen.service.spec.ts create mode 100644 projects/angular-codegen/src/lib/angular-docgen.service.spec.ts diff --git a/projects/angular-codegen/src/lib/__snapshots__/angular-codegen.service.spec.ts.snap b/projects/angular-codegen/src/lib/__snapshots__/angular-codegen.service.spec.ts.snap new file mode 100644 index 000000000..39d181bb6 --- /dev/null +++ b/projects/angular-codegen/src/lib/__snapshots__/angular-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`AngularCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-date-picker.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-date-picker.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`AngularCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on angular 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts b/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts new file mode 100644 index 000000000..31fed20b8 --- /dev/null +++ b/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts @@ -0,0 +1,72 @@ +import { TestBed } from '@angular/core/testing'; +import { AngularAggregatorService } from './angular-aggregator.service'; + +describe('AngularAggregatorService', () => { + let service: AngularAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [AngularAggregatorService] + }); + + service = TestBed.get(AngularAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic react component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }); + + expect(aggregated.length).toEqual(4); + + const [html, css, component, test] = aggregated; + expect(html.kind).toEqual('angular'); + expect(html.language).toEqual('html'); + expect(html.value.indexOf('attr') >= 0).toBeTruthy(); + expect(html.uri).toEqual('components/abc.component.html'); + expect(html.value.indexOf('span >attr') >= 0).toEqual(true); + expect(css.kind).toEqual('angular'); + expect(css.uri).toEqual('components/abc.component.css'); + expect(css.language).toEqual('css'); + expect(component.kind).toEqual('angular'); + expect(component.language).toEqual('typescript'); + expect(component.uri).toEqual('components/abc.component.ts'); + expect(component.value.indexOf(`selector: 'xly-abc',`) >= 0).toEqual(true); + expect(test.kind).toEqual('angular'); + expect(test.language).toEqual('typescript'); + expect(test.uri).toEqual('components/abc.spec.ts'); + expect(test.value.indexOf(`it('should create',`) >= 0).toEqual(true); + }); +}); diff --git a/projects/angular-codegen/src/lib/angular-codegen.service.spec.ts b/projects/angular-codegen/src/lib/angular-codegen.service.spec.ts new file mode 100644 index 000000000..5dd1d05fd --- /dev/null +++ b/projects/angular-codegen/src/lib/angular-codegen.service.spec.ts @@ -0,0 +1,69 @@ +import { TestBed } from '@angular/core/testing'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; +import { AngularCodeGenService } from './angular-codegen.service'; + +describe('AngularCodeGenService', () => { + let service: AngularCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [AngularCodeGenService] + }); + + service = TestBed.get(AngularCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on angular`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); diff --git a/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts b/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts new file mode 100644 index 000000000..4616200e9 --- /dev/null +++ b/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts @@ -0,0 +1,31 @@ +import { TestBed } from '@angular/core/testing'; +import { AngularDocGenService } from './angular-docgen.service'; + +describe('AngularDocGenService', () => { + let service: AngularDocGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [AngularDocGenService] + }); + + service = TestBed.get(AngularDocGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have all the correct propertys', () => { + const data = { + meta: { app: 'THE_APP' } + } as any; + const actual = service.aggregate(data); + + expect(actual[0].kind).toEqual('text'); + expect(actual[0].language).toEqual('markdown'); + expect(actual[0].uri).toEqual('README.md'); + // WE GET THE FIRST LINE OF THE README + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP Angular module'); + }); +}); diff --git a/projects/angular-codegen/src/lib/angular-docgen.service.ts b/projects/angular-codegen/src/lib/angular-docgen.service.ts index 493b031ec..c1d3a9bae 100644 --- a/projects/angular-codegen/src/lib/angular-docgen.service.ts +++ b/projects/angular-codegen/src/lib/angular-docgen.service.ts @@ -17,7 +17,7 @@ export class AngularDocGenService { private renderReadme(name: string) { return `\ -## How to use the ${name} Vue module +## How to use the ${name} Angular module 1. Download and extract the exported module into your workspace, From c7f9dd23131bb656b38ce3ec7bcee60615b988a1 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Fri, 22 Nov 2019 13:23:56 +0100 Subject: [PATCH 09/17] chore: remove duplicate dependency --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index e9a61446f..858098354 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,6 @@ }, "private": true, "dependencies": { - "@angular-devkit/build-angular": "^0.803.12", "@angular/animations": "^8.2.11", "@angular/cdk": "^8.2.3", "@angular/common": "^8.2.11", From 706c858b7afbd9b728fc8a0a914dd5eae01fdc20 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Fri, 22 Nov 2019 13:26:36 +0100 Subject: [PATCH 10/17] test: added test for stencil-codegen --- .../stencil-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../lib/stencil-aggregator.service.spec.ts | 67 + .../src/lib/stencil-codegen.service.spec.ts | 69 + .../src/lib/stencil-docgen.service.spec.ts | 31 + 4 files changed, 58386 insertions(+) create mode 100644 projects/stencil-codegen/src/lib/__snapshots__/stencil-codegen.service.spec.ts.snap create mode 100644 projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts create mode 100644 projects/stencil-codegen/src/lib/stencil-codegen.service.spec.ts create mode 100644 projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts diff --git a/projects/stencil-codegen/src/lib/__snapshots__/stencil-codegen.service.spec.ts.snap b/projects/stencil-codegen/src/lib/__snapshots__/stencil-codegen.service.spec.ts.snap new file mode 100644 index 000000000..2500b02cb --- /dev/null +++ b/projects/stencil-codegen/src/lib/__snapshots__/stencil-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`StencilCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-date-picker.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-date-picker.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`StencilCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on stencil 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts b/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts new file mode 100644 index 000000000..690639332 --- /dev/null +++ b/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts @@ -0,0 +1,67 @@ +import { TestBed } from '@angular/core/testing'; +import { StencilAggregatorService } from './stencil-aggregator.service'; + +describe('StencilAggregatorService', () => { + let service: StencilAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [StencilAggregatorService] + }); + + service = TestBed.get(StencilAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic react component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }); + + expect(aggregated.length).toEqual(3); + + const [component, test, css] = aggregated; + expect(component.kind).toEqual('stencil'); + expect(component.language).toEqual('typescript'); + expect(component.value.indexOf('attr') >= 0).toBeTruthy(); + expect(component.uri).toEqual('components/abc.tsx'); + expect(test.kind).toEqual('stencil'); + expect(test.uri).toEqual('components/abc.e2e.ts'); + expect(test.language).toEqual('typescript'); + expect(css.kind).toEqual('stencil'); + expect(css.language).toEqual('css'); + expect(css.uri).toEqual('components/abc.css'); + expect(css.value.indexOf(`.aclass`) >= 0).toEqual(true); + }); +}); diff --git a/projects/stencil-codegen/src/lib/stencil-codegen.service.spec.ts b/projects/stencil-codegen/src/lib/stencil-codegen.service.spec.ts new file mode 100644 index 000000000..2412c5a74 --- /dev/null +++ b/projects/stencil-codegen/src/lib/stencil-codegen.service.spec.ts @@ -0,0 +1,69 @@ +import { TestBed } from '@angular/core/testing'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; +import { StencilCodeGenService } from './stencil-codegen.service'; + +describe('StencilCodeGenService', () => { + let service: StencilCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [StencilCodeGenService] + }); + + service = TestBed.get(StencilCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on stencil`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); diff --git a/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts b/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts new file mode 100644 index 000000000..babc8d17d --- /dev/null +++ b/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts @@ -0,0 +1,31 @@ +import { TestBed } from '@angular/core/testing'; +import { StencilDocGenService } from './stencil-docgen.service'; + +describe('StencilDocGenService', () => { + let service: StencilDocGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [StencilDocGenService] + }); + + service = TestBed.get(StencilDocGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have all the correct propertys', () => { + const data = { + meta: { app: 'THE_APP' } + } as any; + const actual = service.aggregate(data); + + expect(actual[0].kind).toEqual('text'); + expect(actual[0].language).toEqual('markdown'); + expect(actual[0].uri).toEqual('README.md'); + // WE GET THE FIRST LINE OF THE README + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP StencilJS Web Components'); + }); +}); From dba8e40ae3c32031cde6b15a7a634cf8e10eb56e Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Mon, 25 Nov 2019 07:32:55 +0100 Subject: [PATCH 11/17] test: added test for svg --- .../lib/angular-aggregator.service.spec.ts | 2 +- .../src/lib/css-agregator.service.spec.ts | 2 +- .../lib/stencil-aggregator.service.spec.ts | 2 +- .../svg-codegen.service.spec.ts.snap | 51475 ++++++++++++++++ .../src/lib/svg-aggregator.service.spec.ts | 70 + .../src/lib/svg-codegen.service.spec.ts | 69 + .../src/lib/svg-context.service.spec.ts | 77 + 7 files changed, 51694 insertions(+), 3 deletions(-) create mode 100644 projects/svg-codegen/src/lib/__snapshots__/svg-codegen.service.spec.ts.snap create mode 100644 projects/svg-codegen/src/lib/svg-aggregator.service.spec.ts create mode 100644 projects/svg-codegen/src/lib/svg-codegen.service.spec.ts create mode 100644 projects/svg-codegen/src/lib/svg-context.service.spec.ts diff --git a/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts b/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts index 31fed20b8..1c1135e8d 100644 --- a/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts +++ b/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts @@ -16,7 +16,7 @@ describe('AngularAggregatorService', () => { expect(service).toBeTruthy(); }); - it('should have three files for a basic react component', () => { + it('should have three files for a basic angular component', () => { const data = { '_class': 'rectangle', 'name': 'abc', diff --git a/projects/css-codegen/src/lib/css-agregator.service.spec.ts b/projects/css-codegen/src/lib/css-agregator.service.spec.ts index f3f1b5c58..980d266e8 100644 --- a/projects/css-codegen/src/lib/css-agregator.service.spec.ts +++ b/projects/css-codegen/src/lib/css-agregator.service.spec.ts @@ -16,7 +16,7 @@ describe('ReactCodeGenService', () => { expect(service).toBeTruthy(); }); - it('should have three files for a basic react component', () => { + it('should have three files for a basic css component', () => { const data = { '_class': 'rectangle', 'name': 'abc', diff --git a/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts b/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts index 690639332..4a28181fb 100644 --- a/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts +++ b/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts @@ -16,7 +16,7 @@ describe('StencilAggregatorService', () => { expect(service).toBeTruthy(); }); - it('should have three files for a basic react component', () => { + it('should have three files for a basic stencil component', () => { const data = { '_class': 'rectangle', 'name': 'abc', diff --git a/projects/svg-codegen/src/lib/__snapshots__/svg-codegen.service.spec.ts.snap b/projects/svg-codegen/src/lib/__snapshots__/svg-codegen.service.spec.ts.snap new file mode 100644 index 000000000..e592c4a76 --- /dev/null +++ b/projects/svg-codegen/src/lib/__snapshots__/svg-codegen.service.spec.ts.snap @@ -0,0 +1,51475 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`SvgCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-date-picker.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-date-picker.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 100, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`SvgCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on svg 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 100, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/svg-codegen/src/lib/svg-aggregator.service.spec.ts b/projects/svg-codegen/src/lib/svg-aggregator.service.spec.ts new file mode 100644 index 000000000..2e90ce548 --- /dev/null +++ b/projects/svg-codegen/src/lib/svg-aggregator.service.spec.ts @@ -0,0 +1,70 @@ +import { TestBed } from '@angular/core/testing'; +import { SvgAggregatorService } from './svg-aggregator.service'; + +describe('SvgAggregatorService', () => { + let service: SvgAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [SvgAggregatorService] + }); + + service = TestBed.get(SvgAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic svg component', () => { + + + + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'svg': { + + 'offset': 0, + 'paths': [ + { + 'type': 'path', + 'attributes': + [ + 'fill="none"', + 'd="M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z"'] + } + ] + }, + frame: { + 'width': 20 + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + xmlNamespace: true + }); + + expect(aggregated.length).toEqual(1); + + const [svg] = aggregated; + expect(svg.kind).toEqual('svg'); + expect(svg.language).toEqual('svg'); + expect(svg.uri).toEqual('abc.svg'); + // tslint:disable-next-line: max-line-length + expect(svg.value.indexOf('') >= 0).toEqual(true); + }); +}); diff --git a/projects/svg-codegen/src/lib/svg-codegen.service.spec.ts b/projects/svg-codegen/src/lib/svg-codegen.service.spec.ts new file mode 100644 index 000000000..8136a5847 --- /dev/null +++ b/projects/svg-codegen/src/lib/svg-codegen.service.spec.ts @@ -0,0 +1,69 @@ +import { TestBed } from '@angular/core/testing'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; +import { SvgCodeGenService } from './svg-codegen.service'; + +describe('SvgCodeGenService', () => { + let service: SvgCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [SvgCodeGenService] + }); + + service = TestBed.get(SvgCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'triangle' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'svg': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on svg`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + xmlNamespace: true + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); diff --git a/projects/svg-codegen/src/lib/svg-context.service.spec.ts b/projects/svg-codegen/src/lib/svg-context.service.spec.ts new file mode 100644 index 000000000..b1cba8ca1 --- /dev/null +++ b/projects/svg-codegen/src/lib/svg-context.service.spec.ts @@ -0,0 +1,77 @@ +import { TestBed } from '@angular/core/testing'; +import { SvgContextService } from './svg-context.service'; +import { SvgCodeGenService } from '@xlayers/svg-codegen/public_api'; + +describe('SvgContextService', () => { + let service: SvgContextService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [SvgContextService] + }); + + service = TestBed.get(SvgContextService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should idenitfy a variaty of classes', () => { + [ + 'triangle', + 'shapePath', + ].forEach(item => { + const data = { + _class: item + } as any; + + const identify = service.identify(data); + expect(identify).toBeTruthy(); + }); + }); + + + it('should provide context', () => { + const data = { + _class: 'name', + svg: { + attr: 'random' + } + } as any; + expect(service.of(data)).toEqual({ attr: 'random' }); + }); + + it('should add add new options', () => { + const data = { + _class: 'name', + svg: { + attr: 'random' + } + } as any; + service.put(data, { attributes: [] }); + + expect(service.of(data)).toEqual({ + 'attr': 'random', + 'attributes': [], + }); + }); + it('should clear the svg attributes', () => { + const data = { + _class: 'name', + svg: { + attr: 'random' + } + } as any; + const expected_data = { + _class: 'name', + } as any; + + service.clear(data); + + expect(expected_data).toEqual(data); + }); + + + +}); From f512557c6c83a63043d1fdbbec2de9fd92b9c892 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Mon, 25 Nov 2019 09:06:59 +0100 Subject: [PATCH 12/17] test: added test for vue --- .../vue-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../src/lib/vue-codegen.service.spec.ts | 69 + .../src/lib/vue-docgen.service.spec.ts | 31 + 3 files changed, 58319 insertions(+) create mode 100644 projects/vue-codegen/src/lib/__snapshots__/vue-codegen.service.spec.ts.snap create mode 100644 projects/vue-codegen/src/lib/vue-codegen.service.spec.ts create mode 100644 projects/vue-codegen/src/lib/vue-docgen.service.spec.ts diff --git a/projects/vue-codegen/src/lib/__snapshots__/vue-codegen.service.spec.ts.snap b/projects/vue-codegen/src/lib/__snapshots__/vue-codegen.service.spec.ts.snap new file mode 100644 index 000000000..6e5ef38cc --- /dev/null +++ b/projects/vue-codegen/src/lib/__snapshots__/vue-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`VueCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-date-picker.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-date-picker.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`VueCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on vue 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts b/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts new file mode 100644 index 000000000..04d850a12 --- /dev/null +++ b/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts @@ -0,0 +1,69 @@ +import { TestBed } from '@angular/core/testing'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; +import {VueCodeGenService} from './vue-codegen.service' + +describe('VueCodeGenService', () => { + let service: VueCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [VueCodeGenService] + }); + + service = TestBed.get(VueCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on vue`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); diff --git a/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts b/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts new file mode 100644 index 000000000..468155410 --- /dev/null +++ b/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts @@ -0,0 +1,31 @@ +import { TestBed } from '@angular/core/testing'; +import { VueDocGenService } from './vue-docgen.service'; + +describe('VueDocGenService', () => { + let service: VueDocGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [VueDocGenService] + }); + + service = TestBed.get(VueDocGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have all the correct propertys', () => { + const data = { + meta: { app: 'THE_APP' } + } as any; + const actual = service.aggregate(data); + + expect(actual[0].kind).toEqual('text'); + expect(actual[0].language).toEqual('markdown'); + expect(actual[0].uri).toEqual('README.md'); + // WE GET THE FIRST LINE OF THE README + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP Vue module'); + }); +}); From 8531ec54d3af47629f3b6373aefa80661500738c Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Tue, 26 Nov 2019 07:29:59 +0100 Subject: [PATCH 13/17] test: added test for webcomponents --- .../src/lib/vue-codegen.service.spec.ts | 2 +- ...web-component-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../web-component-aggregator.service.spec.ts | 60 + .../lib/web-component-codegen.service.spec.ts | 69 + .../lib/web-component-docgen.service.spec.ts | 31 + 5 files changed, 58380 insertions(+), 1 deletion(-) create mode 100644 projects/web-component-codegen/src/lib/__snapshots__/web-component-codegen.service.spec.ts.snap create mode 100644 projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts create mode 100644 projects/web-component-codegen/src/lib/web-component-codegen.service.spec.ts create mode 100644 projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts diff --git a/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts b/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts index 04d850a12..f5f13a21b 100644 --- a/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts +++ b/projects/vue-codegen/src/lib/vue-codegen.service.spec.ts @@ -1,7 +1,7 @@ import { TestBed } from '@angular/core/testing'; import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; import { readdirSync } from 'fs'; -import {VueCodeGenService} from './vue-codegen.service' +import {VueCodeGenService} from './vue-codegen.service'; describe('VueCodeGenService', () => { let service: VueCodeGenService; diff --git a/projects/web-component-codegen/src/lib/__snapshots__/web-component-codegen.service.spec.ts.snap b/projects/web-component-codegen/src/lib/__snapshots__/web-component-codegen.service.spec.ts.snap new file mode 100644 index 000000000..f9a8d3a5b --- /dev/null +++ b/projects/web-component-codegen/src/lib/__snapshots__/web-component-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`WebComponentCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-date-picker.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-date-picker.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebComponentCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on wc 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts b/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts new file mode 100644 index 000000000..18a2257df --- /dev/null +++ b/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts @@ -0,0 +1,60 @@ +import { TestBed } from '@angular/core/testing'; +import { WebComponentAggregatorService } from './web-component-aggregator.service'; + +describe('WebComponentAggregatorService', () => { + let service: WebComponentAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebComponentAggregatorService] + }); + + service = TestBed.get(WebComponentAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic web components component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }); + + expect(aggregated.length).toEqual(1); + + const [component] = aggregated; + expect(component.kind).toEqual('wc'); + expect(component.language).toEqual('javascript'); + expect(component.value.indexOf('attr') >= 0).toBeTruthy(); + expect(component.uri).toEqual('components/abc.js'); + }); +}); diff --git a/projects/web-component-codegen/src/lib/web-component-codegen.service.spec.ts b/projects/web-component-codegen/src/lib/web-component-codegen.service.spec.ts new file mode 100644 index 000000000..0890e97f1 --- /dev/null +++ b/projects/web-component-codegen/src/lib/web-component-codegen.service.spec.ts @@ -0,0 +1,69 @@ +import { TestBed } from '@angular/core/testing'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; +import { WebComponentCodeGenService } from './web-component-codegen.service'; + +describe('WebComponentCodeGenService', () => { + let service: WebComponentCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebComponentCodeGenService] + }); + + service = TestBed.get(WebComponentCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on wc`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); diff --git a/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts b/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts new file mode 100644 index 000000000..035d19c4a --- /dev/null +++ b/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts @@ -0,0 +1,31 @@ +import { TestBed } from '@angular/core/testing'; +import { WebComponentDocGenService } from './web-component-docgen.service'; + +describe('WebComponentDocGenService', () => { + let service: WebComponentDocGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebComponentDocGenService] + }); + + service = TestBed.get(WebComponentDocGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have all the correct propertys', () => { + const data = { + meta: { app: 'THE_APP' } + } as any; + const actual = service.aggregate(data); + + expect(actual[0].kind).toEqual('text'); + expect(actual[0].language).toEqual('markdown'); + expect(actual[0].uri).toEqual('README.md'); + // WE GET THE FIRST LINE OF THE README + expect(actual[0].value.split('\n')[0]).toEqual('## How to use the THE_APP Web Components'); + }); +}); From 2867def9ce38b4597c3086de070ff3885526406a Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Tue, 26 Nov 2019 08:14:44 +0100 Subject: [PATCH 14/17] style: typo propetys vs properties --- .../src/lib/angular-docgen.service.spec.ts | 2 +- .../src/lib/css-aggregator.service.ts | 14 +- .../lib/lit-element-docgen.service.spec.ts | 2 +- .../src/lib/react-docgen.service.spec.ts | 2 +- .../src/lib/stencil-docgen.service.spec.ts | 2 +- .../src/lib/vue-docgen.service.spec.ts | 2 +- .../lib/angular-element-aggregator.service.ts | 314 ------------------ .../lib/web-component-docgen.service.spec.ts | 2 +- 8 files changed, 13 insertions(+), 327 deletions(-) delete mode 100644 projects/web-codegen/src/lib/angular-element-aggregator.service.ts diff --git a/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts b/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts index 4616200e9..c3119cc0c 100644 --- a/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts +++ b/projects/angular-codegen/src/lib/angular-docgen.service.spec.ts @@ -16,7 +16,7 @@ describe('AngularDocGenService', () => { expect(service).toBeTruthy(); }); - it('should have all the correct propertys', () => { + it('should have all the correct properties', () => { const data = { meta: { app: 'THE_APP' } } as any; diff --git a/projects/css-codegen/src/lib/css-aggregator.service.ts b/projects/css-codegen/src/lib/css-aggregator.service.ts index 5f686c803..ea20c9f52 100644 --- a/projects/css-codegen/src/lib/css-aggregator.service.ts +++ b/projects/css-codegen/src/lib/css-aggregator.service.ts @@ -183,17 +183,17 @@ export class CssAggregatorService { ); while (++checkingDecIndex < stylesAst.length) { const nextDeclaration = stylesAst[checkingDecIndex]; - const checkDeclarationPropertySet = new Set( + const checkDeclarationpropertieset = new Set( nextDeclaration.declarations.sort() ); for (const key of Array.from(currentDeclarationSet.values())) { - if (checkDeclarationPropertySet.has(key)) { + if (checkDeclarationpropertieset.has(key)) { duplicates.push({ className: `${currentDeclaration.className}, .${nextDeclaration.className}`, key }); - checkDeclarationPropertySet.delete(key); + checkDeclarationpropertieset.delete(key); currentDeclarationSet.delete(key); } } @@ -203,7 +203,7 @@ export class CssAggregatorService { currentIndex, currentDeclarationSet, checkingDecIndex, - checkDeclarationPropertySet + checkDeclarationpropertieset ); } } @@ -250,20 +250,20 @@ export class CssAggregatorService { * @param currentIndex * @param currentDeclarationSet * @param checkingDecIndex - * @param checkDeclarationPropertySet + * @param checkDeclarationpropertieset */ private setValuesInAst( stylesAst: StyleList[], currentIndex: number, currentDeclarationSet: Set, checkingDecIndex: number, - checkDeclarationPropertySet: Set + checkDeclarationpropertieset: Set ) { stylesAst[currentIndex].declarations = Object.assign( Array.from(currentDeclarationSet.values()) ); stylesAst[checkingDecIndex].declarations = Object.assign( - Array.from(checkDeclarationPropertySet.values()) + Array.from(checkDeclarationpropertieset.values()) ); } } diff --git a/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts b/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts index cab08c7ac..6874d358f 100644 --- a/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts +++ b/projects/lit-element-codegen/src/lib/lit-element-docgen.service.spec.ts @@ -16,7 +16,7 @@ describe('ReactDocGenService', () => { expect(service).toBeTruthy(); }); - it('should have all the correct propertys', () => { + it('should have all the correct properties', () => { const data = { meta: { app: 'THE_APP' } } as any; diff --git a/projects/react-codegen/src/lib/react-docgen.service.spec.ts b/projects/react-codegen/src/lib/react-docgen.service.spec.ts index e0e6c85a3..c1ad7d49f 100644 --- a/projects/react-codegen/src/lib/react-docgen.service.spec.ts +++ b/projects/react-codegen/src/lib/react-docgen.service.spec.ts @@ -16,7 +16,7 @@ describe('ReactDocGenService', () => { expect(service).toBeTruthy(); }); - it('should have all the correct propertys', () => { + it('should have all the correct properties', () => { const data = { meta: { app: 'THE_APP' } } as any; diff --git a/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts b/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts index babc8d17d..3818fc0aa 100644 --- a/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts +++ b/projects/stencil-codegen/src/lib/stencil-docgen.service.spec.ts @@ -16,7 +16,7 @@ describe('StencilDocGenService', () => { expect(service).toBeTruthy(); }); - it('should have all the correct propertys', () => { + it('should have all the correct properties', () => { const data = { meta: { app: 'THE_APP' } } as any; diff --git a/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts b/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts index 468155410..557796e0c 100644 --- a/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts +++ b/projects/vue-codegen/src/lib/vue-docgen.service.spec.ts @@ -16,7 +16,7 @@ describe('VueDocGenService', () => { expect(service).toBeTruthy(); }); - it('should have all the correct propertys', () => { + it('should have all the correct properties', () => { const data = { meta: { app: 'THE_APP' } } as any; diff --git a/projects/web-codegen/src/lib/angular-element-aggregator.service.ts b/projects/web-codegen/src/lib/angular-element-aggregator.service.ts deleted file mode 100644 index 408930c9b..000000000 --- a/projects/web-codegen/src/lib/angular-element-aggregator.service.ts +++ /dev/null @@ -1,314 +0,0 @@ -import { Injectable } from '@angular/core'; -import { WebCodeGenOptions } from './web-codegen'; -import { WebAggregatorService } from './web-aggregator.service'; -import { FormatService } from '@xlayers/sketch-lib'; -import { AngularAggregatorService } from './angular-aggregator.service'; - -const ELEMENT_MODULE_FILENAME = 'app.module.ts'; -const EXTRA_WEBPACK_CONFIG_FILENAME = 'webpack.extra.js'; -const COPY_BUNDLES_SCRIPT_FILENAME = 'copy.bundles.js'; -const DIST_FOLDER_NAME = 'dist'; -const BUNDLES_TARGET_PATH = `${DIST_FOLDER_NAME}/bundles`; -const SAMPLE_INDEX_FILENAME = 'index.html'; -const ELEMENT_BUNDLE_FILENAME = 'main.js'; -const ELEMENT_CREATOR_APPNAME = 'element-creator'; - -@Injectable({ - providedIn: 'root' -}) -export class AngularElementAggregatorService { - constructor( - private readonly formatService: FormatService, - private readonly webAggretatorService: WebAggregatorService, - private readonly angularAggregatorService: AngularAggregatorService - ) {} - - aggregate(current: SketchMSLayer, options: WebCodeGenOptions) { - const fileName = this.formatService.normalizeName(current.name); - const componentPathName = `${options.componentDir}/${fileName}.component`; - return [ - { - uri: 'README.md', - value: this.renderReadme(current.name, options), - language: 'markdown', - kind: 'text' - }, - ...this.webAggretatorService.aggregate(current, options).map(file => { - switch (file.language) { - case 'html': - return { - ...file, - kind: 'angular', - uri: `${options.componentDir}/${fileName}.component.html` - }; - - case 'css': - return { - ...file, - kind: 'angular', - uri: `${options.componentDir}/${fileName}.component.css` - }; - - default: - return { - ...file, - kind: 'angularElement' - }; - } - }), - { - uri: `${componentPathName}.ts`, - value: this.angularAggregatorService.renderComponent( - current.name, - options - ), - language: 'typescript', - kind: 'angular' - }, - { - uri: ELEMENT_MODULE_FILENAME, - value: this.renderElementModule( - current.name, - options, - componentPathName - ), - language: 'typescript', - kind: 'angularElement' - }, - { - uri: EXTRA_WEBPACK_CONFIG_FILENAME, - value: this.renderWebpackExtra(), - language: 'javascript', - kind: 'angularElement' - }, - { - uri: COPY_BUNDLES_SCRIPT_FILENAME, - value: this.renderCopyUmdBundlesScript(), - language: 'javascript', - kind: 'angularElement' - }, - { - uri: SAMPLE_INDEX_FILENAME, - value: this.renderSampleIndexHtml(current.name, options), - language: 'html', - kind: 'angularElement' - } - ]; - } - - private renderReadme(name: string, options: WebCodeGenOptions) { - const className = this.formatService.className(name); - const normalizedName = this.formatService.normalizeName(name); - const tagName = `${options.xmlPrefix}${normalizedName}`; - const codeSpan = text => '`' + text + '`'; - const codeBlock = '```'; - return ` -**Notice:** -The current implement of [Angular Elements](https://angular.io/guide/elements) is in MVP (minimum viable product) state. -Some features like content projection are not supported yet. -Keep in mind that the following build process and feature support will be improved in the future. -The creation of the bundled Angular Element is based on the process defined by [Manfred Steyer](https://twitter.com/manfredsteyer)'s example from -[${codeSpan( - 'ngx-build-plus' - )}](https://github.com/manfredsteyer/ngx-build-plus). - -## How to use the ${codeSpan(name)} Angular Element - -1. In order to use an Angular Element as a web component, it first needs to be created, e.g. in the following way: - - a) Use the Angular CLI to create a minimal app which will be used to create the Angular Element: - ${codeBlock} - ng new ${ELEMENT_CREATOR_APPNAME} --minimal --style css --routing false - cd ${ELEMENT_CREATOR_APPNAME} - ${codeBlock} - - b) Add necessary dependencies for the following steps: - ${codeBlock} - ng add @angular/elements - ng add ngx-build-plus - npm install @webcomponents/custom-elements --save - npm install --save-dev copy - ${codeBlock} - - c) Download and extract the files of this generation. Place the files of the ${codeSpan( - className - )} - into your standard ${codeSpan('src/app')} folder. Replace the ${codeSpan( - ELEMENT_MODULE_FILENAME - )} and remove the sample ${codeSpan('app.component.ts')}. - Extract the files ${codeSpan(EXTRA_WEBPACK_CONFIG_FILENAME)} and ${codeSpan( - COPY_BUNDLES_SCRIPT_FILENAME - )} into the project root. - - e) Build the Angular Element: - ${codeBlock} - ng build --prod --extraWebpackConfig ${EXTRA_WEBPACK_CONFIG_FILENAME} --output-hashing none --single-bundle true - ${codeBlock} - -2. After the creation of the Angular Element, it can be found as single file -web component ${codeSpan( - DIST_FOLDER_NAME + - '/' + - ELEMENT_CREATOR_APPNAME + - '/' + - ELEMENT_BUNDLE_FILENAME - )} and can be consumed in the following way: -${codeBlock} - // index.html - - <${tagName}> -${codeBlock} - -However due to the bundle splitting approach, the different dependent bundles must be added manually, -e.g. like described in the exported sample file ${codeSpan( - SAMPLE_INDEX_FILENAME - )}. -In order to get those script you can run the script ${codeSpan( - COPY_BUNDLES_SCRIPT_FILENAME - )} file. -${codeBlock} - node ./${COPY_BUNDLES_SCRIPT_FILENAME} -${codeBlock} - -> For more information about [web components and browser support](https://github.com/WebComponents/webcomponentsjs#browser-support) -`; - } - - private renderElementModule( - name: string, - options: WebCodeGenOptions, - componentPathName: string - ) { - const className = this.formatService.className(name); - const componentName = `${className}Component`; - const normalizedName = this.formatService.normalizeName(name); - const tagName = `${options.xmlPrefix}${normalizedName}`; - return ( - '' + - ` -import { BrowserModule } from '@angular/platform-browser'; -import { NgModule, Injector } from '@angular/core'; -import { createCustomElement } from '@angular/elements'; - -import { ${componentName} } from './${componentPathName}'; - -@NgModule({ - imports: [ - BrowserModule - ], - declarations: [ - ${componentName} - ], - entryComponents: [ - ${componentName} - ], -}) -export class AppModule { - constructor(injector: Injector) { - const element = createCustomElement(${componentName} , { injector }); - customElements.define('${tagName}', element); - } - - ngDoBootstrap() { } -} - ` - ); - } - - private renderWebpackExtra() { - return ` -module.exports = { - "externals": { - "rxjs": "rxjs", - "@angular/core": "ng.core", - "@angular/common": "ng.common", - "@angular/platform-browser": "ng.platformBrowser", - "@angular/elements": "ng.elements" - } -} - `; - } - - private renderCopyUmdBundlesScript() { - return ` -// -// This script copies over UMD bundles to the folder dist/bundles -// If you call it manually, call it from your projects root -// > node /${COPY_BUNDLES_SCRIPT_FILENAME} -// - -const copy = require('copy'); - -console.log('Copy UMD bundles ...'); - -copy('node_modules/@angular/*/bundles/*.umd.js', '${BUNDLES_TARGET_PATH}', {}, _ => {}); -copy('node_modules/rxjs/bundles/*.js', '${BUNDLES_TARGET_PATH}/rxjs', {}, _ => {}); -copy('node_modules/zone.js/dist/*.js', '${BUNDLES_TARGET_PATH}/zone.js', {}, _ => {}); -copy('node_modules/core-js/client/*.js', '${BUNDLES_TARGET_PATH}/core-js', {}, _ => {}); -copy('node_modules/@webcomponents/custom-elements/*.js', '${BUNDLES_TARGET_PATH}/custom-elements', {}, _ => {}); -copy('node_modules/@webcomponents/custom-elements/src/native-shim*.js', '${BUNDLES_TARGET_PATH}/custom-elements/src', {}, _ => {}); - `; - } - - private renderSampleIndexHtml(name: string, options: WebCodeGenOptions) { - const normalizedName = this.formatService.normalizeName(name); - const tagName = `${options.xmlPrefix}${normalizedName}`; - - return ` - - - - -ElementsLoading - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<${tagName}> - - - - `; - } -} diff --git a/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts b/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts index 035d19c4a..9da770bc3 100644 --- a/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts +++ b/projects/web-component-codegen/src/lib/web-component-docgen.service.spec.ts @@ -16,7 +16,7 @@ describe('WebComponentDocGenService', () => { expect(service).toBeTruthy(); }); - it('should have all the correct propertys', () => { + it('should have all the correct properties', () => { const data = { meta: { app: 'THE_APP' } } as any; From 4b8c91e4390046d3e77e6464f2ed713e014cefbf Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Wed, 27 Nov 2019 09:02:55 +0100 Subject: [PATCH 15/17] test: added test for webgen --- .../web-codegen.service.spec.ts.snap | 58219 ++++++++++++++++ .../web-parser.service.spec.ts.snap | 58219 ++++++++++++++++ .../src/lib/web-aggregator.service.spec.ts | 63 + .../src/lib/web-codegen.service.spec.ts | 69 + .../src/lib/web-context.service.spec.ts | 73 + .../src/lib/web-parser.service.spec.ts | 43 + 6 files changed, 116686 insertions(+) create mode 100644 projects/web-codegen/src/lib/__snapshots__/web-codegen.service.spec.ts.snap create mode 100644 projects/web-codegen/src/lib/__snapshots__/web-parser.service.spec.ts.snap create mode 100644 projects/web-codegen/src/lib/web-aggregator.service.spec.ts create mode 100644 projects/web-codegen/src/lib/web-codegen.service.spec.ts create mode 100644 projects/web-codegen/src/lib/web-context.service.spec.ts create mode 100644 projects/web-codegen/src/lib/web-parser.service.spec.ts diff --git a/projects/web-codegen/src/lib/__snapshots__/web-codegen.service.spec.ts.snap b/projects/web-codegen/src/lib/__snapshots__/web-codegen.service.spec.ts.snap new file mode 100644 index 000000000..5d3e6acca --- /dev/null +++ b/projects/web-codegen/src/lib/__snapshots__/web-codegen.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`WebCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-buttons-fabs-light.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-buttons-lights.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-buttons-lights.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-homes.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-homes.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-pooch.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-pooch.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-safari.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-safari.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-cards-welcome-back.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-chips-open-chip.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-chips-open-chip.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-date-picker.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-date-picker.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-notifications-heads-up.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebCodeGenService should match md-components-tabs-status-bar.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/web-codegen/src/lib/__snapshots__/web-parser.service.spec.ts.snap b/projects/web-codegen/src/lib/__snapshots__/web-parser.service.spec.ts.snap new file mode 100644 index 000000000..233f5b195 --- /dev/null +++ b/projects/web-codegen/src/lib/__snapshots__/web-parser.service.spec.ts.snap @@ -0,0 +1,58219 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`WebParserService should match md-components-buttons-fabs-light.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-buttons-fabs-light.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "E516E877-5092-41C7-92B9-C9E0EDE398FA", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/06732C75-3171-4248-9998-E4DCDB514056", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [], + "pagesAndArtboards": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "06732C75-3171-4248-9998-E4DCDB514056", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "9F8AC6A1-F4A4-422B-A677-30C517A1A9ED", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EB48F972-E020-4DE2-97B0-7A2D89CFED85", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3876E2C7-E8F0-4E31-AC66-70C47CD467AB", + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "box-shadow": "0px 14px 14px 0px rgba(0,0,0,0.24),0px 0px 14px 0px rgba(0,0,0,0.12),0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "2B0A10B9-981F-4000-8E2E-2BDD9F30C8E6", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6E3ACA3E-76CF-46D7-B072-C7E4082F6A72", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 56, + "width": 56, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "C5B4F5FF-0EB4-4DD2-8376-3533B3D774F0", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "do_objectID": "C1D54F7B-5384-4D5E-83ED-15CFCBA7D513", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "3C62BB50-29E5-4502-8DBC-2621A141BCB2", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "4CEA97D5-3B84-4ED1-A932-7514DED30E51", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "40D7E606-39BF-4E1F-AD28-2AC06E3E91D8", + "position": 1, + }, + ], + "to": "{0.5, 0.99021444515306123}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "1D1A300C-9B4B-45C0-998B-983E87B8A7BE", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "574727CC-502C-4B50-BC2F-79D70E98DF45", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.06, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "36DA2931-D1A0-4D25-A5A7-79FED83B192A", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "3AB3DEBC-7AED-4262-A4B5-BBD7CF49D76E", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "94F9F8A1-AEFC-4EAB-BC5F-96090A7EFAAF", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "0982F807-6A86-4E4B-8469-42AEC0E1A4D5", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "740B3D09-D655-4DE6-A716-5A55C7717B8F", + "isEnabled": false, + "offsetX": 0, + "offsetY": 14, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 14, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A179AEDB-0726-4579-9998-57619A17D839", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "CF39894C-EB26-463E-949B-1F95A4FA502C", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "983F857A-5BBA-4D2E-9804-6B6B2368E790", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "31DE405C-40EA-4542-9157-77FDF05E4CF7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9B6C9C5-E71F-48B3-8137-57DF20EE7DF7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "840C956E-CACE-49F4-8CA5-AF1B04514FCF", + "height": 24, + "width": 24, + "x": 16, + "y": 16, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "4B044FF4-ABB5-4B8D-947B-F6DA47EEA22F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1CBD652-B9B7-45DF-B1E8-24DBE830A9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ECC1178A-3EEF-42C8-827B-B6C79CE429AA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "95323268-06B8-47A3-9C1E-841E1D3AD72B", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DD50AE6F-7E1B-4345-A9FC-3FF7D3048F44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 14, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{0, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.42857142857142855}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.42857142857142855, 1}", + "curveMode": 1, + "curveTo": "{0.42857142857142855, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.42857142857142855, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 1}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5714285714285714, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{0.5714285714285714, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5714285714285714, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.5714285714285714}", + "curveMode": 1, + "curveTo": "{1, 0.5714285714285714}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5714285714285714}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.42857142857142855}", + "curveMode": 1, + "curveTo": "{1, 0.42857142857142855}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.42857142857142855}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2DEC6056-D4A8-4EE3-93E6-B46AD450B6BC", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E402A47E-CCFA-4061-96E5-361F20410BD4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M14 6,L 8 6,L 8 0,L 6 0,L 6 6,L 0 6,L 0 8,L 6 8,L 6 14,L 8 14,L 8 8,L 14 8,L 14 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "add", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F7E088BE-F829-42B5-99DB-5E12CD9E02A6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"add\\"", + ], + }, + }, + ], + "name": "fab", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "016AD96A-E9C8-4EC3-A372-D87BDA49078B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"fab\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "06732C75-3171-4248-9998-E4DCDB514056": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "E516E877-5092-41C7-92B9-C9E0EDE398FA": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-buttons-lights.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-buttons-lights.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "4305685C-C551-4387-89B9-0D26EF7919C4", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2817D758-4D6F-44B3-A3B2-5D58193F7253", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "35D18917-4257-43AD-BC71-DD8B0CFD9910", + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "box-shadow": "0px 8px 8px 0px rgba(0,0,0,0.24),0px 0px 8px 0px rgba(0,0,0,0.12),0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "94px", + }, + }, + "do_objectID": "D1E9E16D-9246-4763-8198-329B41523EA5", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F95DBC43-E22E-48EE-84C3-BFF761BF5FF0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 94, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0DBDD7F2-F6AD-4250-BD2A-F508C214C5B2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "518A65E4-7447-46E4-8E6D-2500863E0FEE", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "do_objectID": "441BA153-38D1-4932-89DB-A7E0FA4BF10E", + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 0.6, + "green": 0.6, + "red": 0.6, + }, + "fillType": 0, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.5, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": false, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.2376019021739131, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"button bg\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "NORMAL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "16.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "61px", + }, + }, + "do_objectID": "F3D31733-6429-4E7C-AEFA-ED324114E719", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "81E4C18A-C5B1-4FCD-A4EC-F507E67A763E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C77760CF-EB51-4E10-B303-70D70714C011", + "height": 16, + "width": 61, + "x": 16.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {61, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NORMAL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "40BC3C2B-AA2A-42DB-9071-0BDD8FC0A7C3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CFA250F8-ABC2-487A-9323-8BBD10C0BFAD", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ADA7D997-A6B4-4622-BE3E-C82592CC2B0B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"button\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "2740A37B-F315-4ED5-BF31-3EAA8C7AA0F7": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "80A21AD8-F2CE-4D9C-83F1-CE2C838F9B7D": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-homes.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-homes.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "826FEE27-3648-45D5-94A6-B899EF4233BC", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "8490B663-C223-463C-8C44-54459083B56B", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "FA2315BE-E562-403A-A500-48C120C50447", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/401CB139-CDA3-476B-A400-674DCF860FB6", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "401CB139-CDA3-476B-A400-674DCF860FB6", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "AB45C154-4FB9-4C06-9215-8AC28B2323F8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98074A6E-84B2-4F16-B665-C835B1F1F186", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E63A53AF-E7EE-46D8-BFE8-0AAB73C9D3DE", + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "224px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "4037B480-FBAF-4D6E-B8F9-2E8061D47659", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0713C981-1FBB-49DE-8AF4-82CEF028725A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 224, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "9EF2F25A-8C0B-490A-8B6B-CB89A9CA3FE0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "76222E59-B93C-48FF-9FC5-055A32CBC1D2", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "598CF3D5-4C1A-4AD1-B2B7-1D97BE8C6704", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "DD1184C0-136D-418C-8EA0-1ED3D172E028", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "8490B663-C223-463C-8C44-54459083B56B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "BA1E3681-6F14-4FA6-B6A2-D21959CEBC60", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,187,211,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "1BF27E7F-871C-4987-AC53-9DD9A8A3FC63", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B245FB2F-7F3C-4D6A-AAF3-18FE3B124490", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "79FACAF0-A36E-4680-8DB7-CA5F47EF99A0", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333333, + "red": 0, + }, + "do_objectID": "462C738B-C65E-434C-9FF9-916E784F8EB1", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Pre-fab Homes", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "19px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "768384C6-1DAB-4A38-BDF4-5C676623CE86", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "386665A7-C098-49E9-AB71-126A8B4ED607", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D0438ADA-75E5-48E5-A3AB-A55AF5E84029", + "height": 24, + "width": 161, + "x": 19, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {161, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Pre-fab Homes 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3ACBDB66-E7DC-47A4-9687-4C09B00703E3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "45243A28-E9FB-4A4A-8DB1-A8B2F38B9657", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "209px", + "position": "absolute", + "top": "188px", + "visibility": "visible", + "width": "119px", + }, + }, + "do_objectID": "FF025A25-CAD0-404D-B307-CB2E05A920A6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2A26EE59-59EE-4608-8D68-FC2A4BB1CE74", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E30F338C-0755-4F54-AED4-4CA9BDE48A46", + "height": 24, + "width": 119, + "x": 209, + "y": 188, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "07068EE8-6A87-472A-AF78-D361DCDCEDAE", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B6AF0990-0F41-4695-BD54-00197F4BEAE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "307E9C13-BD4D-44C3-8559-96F0E46B186E", + "height": 24, + "width": 24, + "x": 95, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "C7FEEEE2-8465-489D-AF00-75219DF2BE56", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8C0747D3-9212-4C92-8FE5-0707A83F6760", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "74B5A074-40F3-4E8A-80A2-8C016D5DD98D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 24 0,L 24 24,L 0 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "3px", + "position": "absolute", + "top": "1.999899999999798px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3C46C5B1-9D92-4E35-9ADA-C87F29364E82", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E1DB8B35-B319-4E78-9E45-9CA53344E3C5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CBDA8CB3-7920-4DDC-BAC9-B6B509B94BE1", + "height": 20, + "width": 18, + "x": 3, + "y": 1.999899999999798, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.79111111111111099, 0.70682730923694814}", + "curveMode": 4, + "curveTo": "{0.83333333333333337, 0.70682730923694814}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.83333333333333337, 0.70682730923694814}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.72444444444444445, 0.74548192771084365}", + "curveMode": 4, + "curveTo": "{0.7533333333333333, 0.72188755020080353}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.72444444444444445, 0.74548192771084365}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33111111111111119, 0.52560240963855442}", + "curveMode": 4, + "curveTo": "{0.32833333333333337, 0.53714859437751028}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32833333333333337, 0.53714859437751028}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33333333333333337, 0.48995983935743004}", + "curveMode": 2, + "curveTo": "{0.33333333333333337, 0.51405622489959857}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33333333333333337, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.32833333333333337, 0.46686746987951833}", + "curveMode": 4, + "curveTo": "{0.33111111111111119, 0.47841365461847413}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.32833333333333337, 0.46686746987951833}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.28564257028112472}", + "curveMode": 4, + "curveTo": "{0.72000000000000008, 0.26054216867469898}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.72000000000000008, 0.26054216867469898}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.92555555555555558, 0.30120481927710863}", + "curveMode": 3, + "curveTo": "{0.7894444444444445, 0.30120481927710863}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.30120481927710863}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.067269076305220984}", + "curveMode": 2, + "curveTo": "{1, 0.23393574297188771}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74111111111111105, 8.8817841970012528e-17}", + "curveMode": 2, + "curveTo": "{0.92555555555555558, 8.8817841970012528e-17}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 8.8817841970012528e-17}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.66666666666666663, 0.16265060240963869}", + "curveMode": 3, + "curveTo": "{0.66666666666666663, 0.067269076305220984}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.66666666666666663, 0.15060240963855434}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67166666666666663, 0.18574297188755035}", + "curveMode": 4, + "curveTo": "{0.66888888888888887, 0.17419678714859449}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.67166666666666663, 0.18574297188755035}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.36696787148594401}", + "curveMode": 4, + "curveTo": "{0.28000000000000003, 0.39206827309236975}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.28000000000000003, 0.39206827309236975}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.074444444444444438, 0.35140562248996005}", + "curveMode": 3, + "curveTo": "{0.21055555555555555, 0.35140562248996005}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.35140562248996005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.58534136546184767}", + "curveMode": 2, + "curveTo": "{0, 0.41867469879518093}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5020080321285143}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21055555555555555, 0.65261044176706862}", + "curveMode": 3, + "curveTo": "{0.074444444444444438, 0.65261044176706862}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.16666666666666666, 0.65261044176706862}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.28000000000000003, 0.61194779116465892}", + "curveMode": 4, + "curveTo": "{0.25, 0.6370481927710846}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.28000000000000003, 0.61194779116465892}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.6727777777777777, 0.83132530120481973}", + "curveMode": 4, + "curveTo": "{0.67555555555555558, 0.82078313253012092}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.67555555555555558, 0.82078313253012092}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.67111111111111121, 0.93423694779116495}", + "curveMode": 3, + "curveTo": "{0.67111111111111121, 0.84236947791164696}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.67111111111111121, 0.85341365461847429}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9227777777777777, 1}", + "curveMode": 2, + "curveTo": "{0.74388888888888893, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.83333333333333337, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99555555555555564, 0.77259036144578308}", + "curveMode": 2, + "curveTo": "{0.99555555555555564, 0.93423694779116495}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.99555555555555564, 0.85341365461847385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.83333333333333337, 0.7068273092369477}", + "curveMode": 4, + "curveTo": "{0.92277777777777792, 0.7068273092369477}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.83333333333333337, 0.7068273092369477}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "395F98C8-7A7D-448B-9431-77AE198CD2AA", + "opacity": 0.5399999618530273, + }, + "do_objectID": "10925B80-0D6E-410C-B666-67D8E5D5D287", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M15 14.137,S 13.56 14.438, 13.04 14.91,S 5.91 10.743, 5.91 10.743,S 6 10.281, 6 10.04,S 5.96 9.568, 5.91 9.337,S 12.96 5.211, 12.96 5.211,S 14.21 6.024, 15 6.024,S 18 4.679, 18 3.012,S 16.66 0, 15 0,S 12 1.345, 12 3.012,S 12.04 3.484, 12.09 3.715,S 5.04 7.841, 5.04 7.841,S 3.79 7.028, 3 7.028,S 0 8.373, 0 10.04,S 1.34 13.052, 3 13.052,S 4.5 12.741, 5.04 12.239,S 12.16 16.416, 12.16 16.416,S 12.08 16.847, 12.08 17.068,S 13.39 20, 15 20,S 17.92 18.685, 17.92 17.068,S 16.61 14.137, 15 14.137,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "share", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A78C7BD2-B908-4E61-BB54-AD271783FED9", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"share\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "47px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCA8D01-4CE8-44F4-9A35-B44F2818B281", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A01478AF-F442-48D4-876B-7B242558A1C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1CD9EA03-E457-4DE2-AB87-E53E4CA3F6CE", + "height": 24, + "width": 24, + "x": 47, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "5px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "40428233-48A8-463F-82D6-ABB774BC81A1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792DFC7-13AE-4023-BC28-6EAE2F525D94", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 14, + "x": 5, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 1, + "curveTo": "{0.8571428571428571, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.8571428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.064285714285714307, 1}", + "curveMode": 4, + "curveTo": "{0.14285714285714285, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.14285714285714285, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.88888888888888884}", + "curveMode": 4, + "curveTo": "{0, 0.95000000000000007}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.16666666666666666}", + "curveMode": 1, + "curveTo": "{0.5, 0.16666666666666666}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.16666666666666666}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.95000000000000007}", + "curveMode": 4, + "curveTo": "{1, 0.88888888888888884}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.88888888888888884}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.8571428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.93571428571428583, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.8571428571428571, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "1BB40B22-9947-481D-BDFD-D499709536C5", + "opacity": 0.5399999618530273, + }, + "do_objectID": "7293758E-851C-4EB8-9F53-33766431828C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M12 18,S 2 18, 2 18,S 0 17.1, 0 16,L 0 0,L 7 3,L 14 0,S 14 16, 14 16,S 13.1 18, 12 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A8165DEE-8DA1-45CD-B390-B7331D25BAAF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "78FE6195-3CDF-434D-90A3-E224F31C3763", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BE40041B-B43A-4869-AAA8-9898E96B2C5F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "bookmark", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48166D1E-18C8-42D0-AC51-FAF864698384", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"bookmark\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "AF94197C-9DB1-4DDB-B490-00C1E7AA369D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E3F3B31-21D5-4AB9-9C91-1DD6589D73BC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9B35355B-154A-4833-84D9-5218A91A7536", + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3.125px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18.75px", + }, + }, + "do_objectID": "9DD6EEBD-FB2E-461C-BEF9-6C4FB0477A0D", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ABBE7457-D1CB-4143-BB68-1D95867C1CA6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 18.75, + "x": 3.125, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.63888888888888884, 1}", + "curveMode": 4, + "curveTo": "{0.75, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.75, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.46111111111111114, 0.91874999999999996}", + "curveMode": 4, + "curveTo": "{0.53888888888888886, 0.91874999999999996}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0.8125}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1111111111111111, 1}", + "curveMode": 3, + "curveTo": "{0.3611111111111111, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.25, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.5}", + "curveMode": 3, + "curveTo": "{0, 0.88124999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.80555555555555558, 0.3125}", + "curveMode": 4, + "curveTo": "{0.19444444444444445, 0.3125}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.88124999999999998}", + "curveMode": 3, + "curveTo": "{1, 0.5}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.71875}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 1}", + "curveMode": 4, + "curveTo": "{0.88888888888888884, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.75, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FA2315BE-E562-403A-A500-48C120C50447", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "746B6BFB-EEFE-454B-A634-4D361594E58D", + "opacity": 0.5399999618530273, + }, + "do_objectID": "0FE12C9C-D240-466A-A999-43B8A86B6955", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M14.063 16,S 10.104 14.7, 9.375 13,S 6.771 16, 4.688 16,S 0 14.1, 0 11.5,S 3.646 5, 9.375 0,S 18.75 8, 18.75 11.5,S 16.667 16, 14.063 16,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "25px", + }, + }, + "do_objectID": "19399963-F807-4409-A827-64FB33B94F01", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C5CE84E-EE96-4490-92D4-0DBB46A90FAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 25, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "3CE2BCB1-1C1D-410E-830B-3A0E3D477D23", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M25 0,L 0 0,L 0 24,L 25 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "favorite", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C36173C9-FA09-46A9-ADBC-64426D712FED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"favorite\\"", + ], + }, + }, + ], + "name": "Buttons", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1EC709E2-ABC8-4830-81B0-226414931B28", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Buttons\\"", + ], + }, + }, + ], + "name": "homes", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E565F4A9-B662-4CFD-AF95-FFD3DF24854C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"homes\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "401CB139-CDA3-476B-A400-674DCF860FB6": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "826FEE27-3648-45D5-94A6-B899EF4233BC": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-pooch.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-pooch.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "6E569BEC-BE0B-41CC-881D-93B8D0D2F465", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "DDD901D1-0EF3-40F5-AF98-7DEDE1BF513B", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9C361BD-EB7D-45D7-993E-FA23D00BFA98", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB393AC6-905E-4F1E-9032-ABF5317047FE", + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "C51FF24E-A613-4D7B-B311-3777B7A4CE77", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9D000DC3-8018-45E4-A5DF-5CD2FDEDFFE8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card 2", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2CC3A792-4213-43B1-896B-BAA6A941E2A2", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "7EEDA3C7-5130-43D0-A51D-680EB9D3CA2F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card 2\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.25)", + "display": "block", + "height": "136px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "BBB42447-B25A-4903-8FD3-465F51F15F28", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B64A5E-33A2-4991-91B7-66CF8A77358F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 136, + "width": 88, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B733E144-D6D0-4CDD-8D5E-CCE04A6286D7", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.25, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "2A351673-93A4-460F-B690-1B73DA4B367A", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E0371D94-7A99-4EB8-AE35-648DCD9EB7A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "82px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "33357766-1F4F-4C49-A4A5-99426C7452B6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F287B838-47AC-492E-B473-CFD515733FB0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1EE76A15-EF66-4842-984E-E5473373006F", + "height": 3, + "width": 256, + "x": 88, + "y": 82, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.51388888888888884}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.51388888888888884}", + "do_objectID": "67DD54CD-2018-456C-BDF8-792DBB8E884E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058593749999999445, 0.54166666666666663}", + "curveMode": 1, + "curveTo": "{0.0058593749999999445, 0.54166666666666663}", + "do_objectID": "91A3A7CF-0518-4F4F-9B7B-1D49FF5698EF", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "56F82DBF-6585-4ACF-AA59-ACDCBA7402FA", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "E8F86E04-AC03-4F72-85DE-1F93DE876365", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "REVIEW", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "223.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "51px", + }, + }, + "do_objectID": "04C20A55-90A4-4FB4-A916-8D24A652C2A7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C77CFEE9-F154-4C1C-BFB9-7B75B3AF8857", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 51, + "x": 223.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {50, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "REVIEW", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8DBBF284-B312-4EF3-B96F-8E61AC4ED202", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "59D7A1A6-E476-4A84-8F4A-131F24F8718E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 11, + "location": 0, + }, + ], + "string": "FREE SAMPLE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "108.5px", + "position": "absolute", + "top": "100px", + "visibility": "visible", + "width": "92px", + }, + }, + "do_objectID": "29C80977-5A84-4F66-B864-DBA1654F8EA0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D61373AA-E8D1-4D1E-82AB-95813BCE9DF6", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 92, + "x": 108.5, + "y": 100, + }, + "glyphBounds": "{{0, 0}, {91, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "FREE SAMPLE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B75FB2B0-0DA8-4ABC-9361-D8CF67849068", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9DD3D31B-CFB7-4864-AE48-949FA9DFCCD0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 14, + "location": 0, + }, + ], + "string": "By Alex Nelson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "107px", + "position": "absolute", + "top": "43px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "1670A382-5542-40DE-AE19-625FA071A167", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "28B9C66F-C52C-400F-A962-B7D68C4AAA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 95, + "x": 107, + "y": 43, + }, + "glyphBounds": "{{0, 0}, {93, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "By Alex Nelson 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CDCA2D6-6419-4A65-8D5F-AC6407D113AE", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "AEE86187-CDBF-4CB6-9D6A-114D19FDA077", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "EEB58BA2-869B-416B-B2CC-9D6BFF0C4CCE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "El Pooch", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "106px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "95px", + }, + }, + "do_objectID": "78AD8A32-C7C2-4083-9BA9-BB0E73F90123", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8F3F7ED5-6D4E-4E43-B238-ADE1A80AECC7", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 95, + "x": 106, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {94, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "El Pooch 2", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "95DD1901-8534-47E5-9B62-AC3497C4277A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "420CEEC4-056D-4BF8-80FA-B75D0F761B93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "11C73A16-6999-43B1-AB74-C7FACE090B3A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "pooch", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4325C8D2-967D-4139-88E8-800C0A14F98B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"pooch\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "001F8DFE-9F5D-43E9-BF53-0A952F07A9E6": Object { + "pageListHeight": 110, + }, + "6E569BEC-BE0B-41CC-881D-93B8D0D2F465": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-safari.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "49.3", + "build": 51167, + "commit": "2b45d75f77b3d86c8cfab3e1090bcc520c37ea74", + "compatibilityVersion": 93, + "variant": "NONAPPSTORE", + "version": 101, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-safari.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "DC1551F0-7EFB-4E30-832B-60A7413DBA42", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/319AD824-DAE8-44E7-8EB2-B07161591010", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "319AD824-DAE8-44E7-8EB2-B07161591010", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EF20460E-1A74-4A30-9BCF-6C2D629DC397", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5A7019EA-74C9-4CCF-982C-4E9980A9496F", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4D83E939-FD2D-4C99-AE51-E66B6FF635EC", + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "304px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "CB20DD20-DAEA-4562-9F61-6D1A1FFE32C8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CDADD662-FCFF-4394-946A-793F689DC38D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 304, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "do_objectID": "6E3D136A-E433-4159-A03D-995EEF09B0A4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "4BC3DBAF-0EC0-441B-A8C6-FE4E5657A37E", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "0E1C2F7A-B58A-4812-A216-30183E45A986", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "do_objectID": "439F3A74-6DD0-40A2-985E-23FE9A941740", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F951EC0B-C9FE-45DF-92BF-6756E23FDA8A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "do_objectID": "4D3E9A9C-AA9A-45C8-8133-2A415A475320", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "752F5764-3E5D-438B-89C2-48C85F853C90", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "49B37B93-9CC2-40C7-909E-BAD43ACC3CB7", + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "FEA81079-011C-4485-9299-F27DC71A4D2D", + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "do_objectID": "921DB827-3F44-486D-8FEB-9B53769D9904", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A087F5DB-3E45-46E3-A133-FEE2A2AFCBD8", + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "A21B4BDC-568A-4261-80C0-38D869670C62", + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "1C08D726-D534-4E75-9260-9EA798AA9D61", + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "49AC5C96-D36D-446F-A853-3D250D32ACF9", + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "F57A93DD-F5A3-493B-ADA1-F00E0DB460D7", + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "C070F448-79F2-42C7-8134-67532014E942", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "844AC053-A76D-4714-9F49-E948BF4436B8", + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "0A6D014F-FA89-4A11-BACF-EC41065A236F", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "display": "block", + "height": "176px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "B83B06C3-C045-422F-B629-D9B739E6F4CD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1510F840-6AF7-4A91-8C0F-9A42EE45E703", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 176, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "image placeholder", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "DF946EAC-C59A-421F-BE8B-A1AB6C2BD6C3", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"image placeholder\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "Kangaroo Valley Safari", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "24px", + "left": "18px", + "position": "absolute", + "top": "137px", + "visibility": "visible", + "width": "245px", + }, + }, + "do_objectID": "578B1F6F-C295-4480-981F-66A2C34817D5", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "EFB4F893-3926-458E-BDAD-428CB4A50072", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 245, + "x": 18, + "y": 137, + }, + "glyphBounds": "{{0, 0}, {241, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Kangaroo Valley Safari", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A1A382E5-4261-4B3E-93AF-2079CDC6E0B6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8D8E5D61-558E-4270-ACB3-8EC7F6FD0BEC", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 83, + "location": 0, + }, + ], + "string": "Located two hours south of Sydney in the Southern Highlands of New South Wales, ...", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "48px", + "left": "18px", + "position": "absolute", + "top": "183px", + "visibility": "visible", + "width": "311px", + }, + }, + "do_objectID": "00C4F2BC-9B0F-4BC7-AD3D-8A29651E6A70", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3A66B657-D1DD-4C2E-8494-8046CE40F4C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1426C0D4-2243-49E1-9887-67451044201E", + "height": 48, + "width": 311, + "x": 18, + "y": 183, + }, + "glyphBounds": "{{0, 0}, {311, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Located two hours so 2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "02D0C272-ED3B-41D4-9ECE-4E7236DB3335", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9812C9C8-D0C4-4B45-BEBC-20E009EC996B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8700000048, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "76px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "15A0664E-D28D-4B7E-B0FB-63774C37D230", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D5BA16B2-054E-4E46-95B5-1AB6D00C69AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "DFDBA5FD-0674-4831-BBE1-8E3D91FC6AF2", + "height": 36, + "width": 112, + "x": 76, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "112px", + }, + }, + "do_objectID": "59D2E380-CC55-402B-8C81-54012EE3DED5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54C4D6C1-1D04-4B1B-A5DF-7F490425D678", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 112, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "do_objectID": "32975FEA-750D-4232-86FA-5E832CE54018", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "0AA5E62B-C917-45DA-A8C1-1C65EAFE132F", + "opacity": 0.5, + }, + "do_objectID": "EA041F32-EBC7-460A-B801-F4D6B0C7C34F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M110 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 110 0, 110 0,S 112 0.9, 112 2,S 112 34, 112 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "LEARN MORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "12.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "87px", + }, + }, + "do_objectID": "47FA7CC5-A5F1-407B-A37A-25C133BE1374", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14567043-499E-4E90-8374-455E27D5E4A1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 87, + "x": 12.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {86, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "LEARN MORE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0D5DBF78-9B9B-4CF1-8C4B-A2DF9847B0FF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5584F61D-EFE1-4BA5-9BBE-15894B9C9A4D", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "739E8C2A-CFD2-4F44-A714-C75AD98ADC68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "260px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "C3936B83-9F4B-4ABE-9D71-0153AF0EB677", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B44F7A42-B45D-411B-9170-ADEFA4CF749D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "CB8CF3B7-DDF8-4D29-A7A9-521DE1DB9C9D", + "height": 36, + "width": 68, + "x": 8, + "y": 260, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "03A794C9-D619-48C7-A49A-EA42851382FF", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9E94E774-1AB4-40F9-B126-161EE81A0938", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "button bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "89877CD0-18B1-4224-B38D-C779492D6F69", + "opacity": 0.5, + }, + "do_objectID": "023DB932-8315-469E-BEEC-0E87E3CF799C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "SHARE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "11.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "46px", + }, + }, + "do_objectID": "B8290996-8123-4BBB-AC2D-397D0141FB00", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "998DA7D9-3B59-4D04-8C6B-D23AE232686B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 46, + "x": 11.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {45, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "SHARE", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6BFD4318-C038-4FFD-87B8-C4D13C8F6B6A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2FA80EA5-3F23-46F3-BE4D-3AC33AD62271", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1DC2BC2-55C9-4EEE-B866-FFE1795E68E2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "250px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "9BA56225-57E6-4FD1-A602-F4C876D2E375", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E178E6B-F836-4BF6-B43A-DC698F0B3FE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0680A5C3-6434-49C3-B12A-D037F0C01CE0", + "height": 3, + "width": 344, + "x": 0, + "y": 250, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.50694444444444431}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.50694444444444431}", + "do_objectID": "EB0CE7D0-6084-4148-8DD0-848DC70B85C7", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.52083333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.52083333333333326}", + "do_objectID": "CAA59354-293F-495C-A67B-ABB1153814AE", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "E916A90A-B03E-4087-8F84-CB4B279D231A", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "AD9D47D6-9A01-4323-B6D3-2C7E1DC06321", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "safari", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B48056A0-46DA-4A51-BEAF-F29032D64A9C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"safari\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "319AD824-DAE8-44E7-8EB2-B07161591010": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "DC1551F0-7EFB-4E30-832B-60A7413DBA42": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-welcome-back.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-cards-welcome-back.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "BCF6D784-9892-4409-B0FD-45080081CBD8", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "name": "Material/Light/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8EEDCF04-DE6B-42A4-B7A2-131023246588", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "337CF9CA-A46D-482B-B304-04ACE4440D4E", + "exportFormats": Array [ + Object { + "_class": "exportFormat", + "absoluteSize": 0, + "fileFormat": "png", + "name": "", + "namingScheme": 0, + "scale": 1, + "visibleScaleType": 0, + }, + ], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BAA538A3-0F37-4203-8875-9A3AE4A8EC3B", + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "208px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "5B7E77B6-6D48-442A-BBEB-1A46F82D3AF3", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2D7A1BCD-CCD4-425D-980A-672210E7435F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 3, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 208, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 3, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "15B76542-483C-4D5E-99DD-4CE0E77DC5A4", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "CA052CC9-21FE-4B8D-AC2F-5747FA138CC6", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"card\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Welcome Back!", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "18px", + "position": "absolute", + "top": "22px", + "visibility": "visible", + "width": "166px", + }, + }, + "do_objectID": "97AC82C0-CD3B-4FB3-85BB-F8C89D898BBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3515F2AB-65DD-4EE0-876A-DBB9B708DDA9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 166, + "x": 18, + "y": 22, + }, + "glyphBounds": "{{0, 0}, {165, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Welcome Back!", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "436E1553-AAE7-41B9-B6AD-D823B005172E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C66E6C69-9184-487C-88DF-13985819C1A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 54, + "location": 0, + }, + ], + "string": "It’s been a while, have you read any new books lately?", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "48px", + "left": "19px", + "position": "absolute", + "top": "61px", + "visibility": "visible", + "width": "204px", + }, + }, + "do_objectID": "6FEDE5F2-8515-4011-A10B-2E2E105B8928", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C57A958D-D048-46D2-895F-4389AC8EEB73", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A383283F-2AA1-4EFF-9B44-41706FF34334", + "height": 48, + "width": 204, + "x": 19, + "y": 61, + }, + "glyphBounds": "{{0, 0}, {204, 48}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "It’s been a while, h", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "6013833E-7EF6-4D3F-9CBD-ED1A9C9B9A4B", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "697B16C9-80C7-44A2-9AA5-AFDF5E752D08", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "815B9917-0E4F-4783-9346-C1534862D261", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "77px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "E7B1B481-EA1B-449A-A8A1-75F4E84C7B9D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C8205CFA-0A12-4D77-AA14-1946E6AD06E8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D657F52-AED6-49E8-B780-803B55B20138", + "height": 36, + "width": 54, + "x": 77, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "54px", + }, + }, + "do_objectID": "F6B4CF7C-FD4E-4241-A02F-B46E2D5F0268", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C733D5F7-D3F0-4133-AE77-C9E98AAAB52D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 54, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9821428571428571, 1}", + "curveMode": 4, + "curveTo": "{0.99196428571428563, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9821428571428571, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0080357142857142728, 1}", + "curveMode": 4, + "curveTo": "{0.017857142857142856, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.017857142857142856, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.017857142857142856, 0}", + "curveMode": 4, + "curveTo": "{0.0080357142857142728, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.017857142857142856, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99196428571428563, 0}", + "curveMode": 4, + "curveTo": "{0.9821428571428571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9821428571428571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "8C03141F-D363-4E01-869E-E7CCC2D91717", + "opacity": 0.5, + }, + "do_objectID": "39FC5825-5936-4C4D-9DAB-7918F1FFEC10", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M54 34,S 53.566 36, 53.036 36,S 0.964 36, 0.964 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.434 0, 0.964 0,S 53.036 0, 53.036 0,S 54 0.9, 54 2,L 54 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "YES", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "14.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "26px", + }, + }, + "do_objectID": "3FE0C2A6-A817-47D9-B070-ED2CD9D39D7D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7EE58C80-2D19-4479-9C76-B3D9E21F0EC8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 26, + "x": 14.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {25, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "YES", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A254178-C57E-4915-8550-3E91ACD97F96", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "40360303-694C-4D30-B6DD-FB1C687C9399", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "743C925D-4A4C-435F-B50A-0923FD524DA2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "8px", + "position": "absolute", + "top": "165px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "A147FF7C-F32C-4E80-B23B-2708FF7B1880", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "87FFEFF3-4EFA-49C8-866C-BE906B46A083", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1C22AFF3-B593-4212-884A-51F22975E6AF", + "height": 36, + "width": 68, + "x": 8, + "y": 165, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "36px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "68px", + }, + }, + "do_objectID": "6D287BF2-0FE7-43CC-AA85-84EB6F8B4ED2", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C81FA79E-ACB2-4F2E-AD4D-283B2587428F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 36, + "width": 68, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.97500000000000064}", + "curveMode": 4, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97058823529411764, 1}", + "curveMode": 4, + "curveTo": "{0.98676470588235288, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.97058823529411764, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.013235294117647142, 1}", + "curveMode": 4, + "curveTo": "{0.029411764705882353, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.029411764705882353, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{0, 0.97500000000000064}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.02499999999999937}", + "curveMode": 4, + "curveTo": "{0, 0.055555555555555552}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.029411764705882353, 0}", + "curveMode": 4, + "curveTo": "{0.013235294117647142, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.029411764705882353, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.98676470588235288, 0}", + "curveMode": 4, + "curveTo": "{0.97058823529411764, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.97058823529411764, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.055555555555555552}", + "curveMode": 4, + "curveTo": "{1, 0.02499999999999937}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 1, + "curveTo": "{1, 0.94444444444444442}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.94444444444444442}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "C2D0E9F3-919B-4784-A9D0-C9B00D097B71", + "opacity": 0.5, + }, + "do_objectID": "34A66C71-5DC3-4ED3-934A-C60C34E44E88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M68 34,S 67.1 36, 66 36,S 2 36, 2 36,S 0 35.1, 0 34,S 0 2, 0 2,S 0.9 0, 2 0,S 66 0, 66 0,S 68 0.9, 68 2,L 68 34,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "NO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "24.5px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B40DD28B-85D6-4D87-A801-0E543573111E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F6540BCA-7459-4730-88B5-7742A5D7034F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "089C4CB7-A19F-4D16-80ED-5F5DFCAAC6EE", + "height": 16, + "width": 20, + "x": 24.5, + "y": 10, + }, + "glyphBounds": "{{0, 0}, {20, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2DEB03B0-7A4C-4FD4-81DC-85E0837DA00B", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "34D7ADD0-45C7-45C2-96A1-C19DBF41D7BF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Button", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "474D1C33-E1C7-4BC5-AA82-BBBF47447E8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Button\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "154px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "EB7DE674-A68C-48F9-892D-384361B76903", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A703607B-86A0-493B-98BC-E6EBE0B7844B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9A484847-0B0B-4D5E-A37C-22A46222A3D5", + "height": 3, + "width": 344, + "x": 0, + "y": 154, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Line", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0014534883720930232, 0.52777777777777746}", + "curveMode": 1, + "curveTo": "{0.0014534883720930232, 0.52777777777777746}", + "do_objectID": "0BFBDF1F-45BD-405D-A4C6-01CBBF9B52E0", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0043562068495639136, 0.58333333333333326}", + "curveMode": 1, + "curveTo": "{0.0043562068495639136, 0.58333333333333326}", + "do_objectID": "61496D9C-8B44-40B0-925C-26A47056F117", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "F74BC98A-5522-4712-B071-AFC7A4AABB0C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "64157376-846E-4ABA-B333-5C69E78361AF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 345 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Welcome back", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FAED633-FEA2-46EE-AB86-DBBE3AEECE4A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"Welcome back\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BCF6D784-9892-4409-B0FD-45080081CBD8": Object { + "pageListHeight": 110, + }, + "E0427AC9-BA39-4A59-AFB0-11C43C5EFADF": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-chips-open-chip.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{161, 161}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-chips-open-chip.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "C3625949-D986-454A-9835-E894A1794432", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "name": "Material/Light/Card", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "name": "Material/Light/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "name": "Material/Dark/Body 1 secondary", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "name": "Material/Dark/Subhead", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + ], + "pagesAndArtboards": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "BF1B81AB-AE5C-453F-8B6E-96462FCD7785", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "37328F7B-6C00-4F36-B298-D2591D3F3455", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0E6E8F36-96F4-4B41-A65D-BCA091AFBB79", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "50C63B45-8F44-402B-B5D2-23759720EE88", + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(250,250,250,1.00)", + "box-shadow": "0px 2px 2px 0px rgba(0,0,0,0.24),0px 0px 2px 0px rgba(0,0,0,0.12)", + "display": "block", + "height": "184px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "64A016D6-60A2-46DF-ABE3-6BAEF4ED5F4F", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D4734A1D-8A8E-42DA-B4E7-AE09D9448D7B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 2, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 184, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "chip bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "248FC5A5-0803-47FC-B286-EC5C1723B002", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.05, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.950255322222858, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "4A327020-1812-4283-B880-1CA09C89733C", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"chip bg\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "128px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E61818B7-E900-45F0-9176-9BFBEC42BB22", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A5ADC64-80B0-46E4-B9A7-7BE21526E05E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2C0119CA-EA5D-437B-B861-7ECD7949BD7A", + "height": 56, + "width": 296, + "x": 0, + "y": 128, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "526C2C34-EFD0-45BF-B09D-532FDD1EBD0D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6B96F9D0-698D-46F0-ADBD-6B860B2E5956", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D6974CB3-6928-468C-ACA2-03608ED5B305", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email3@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "14px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "3592C802-2160-418B-9A49-C9031EE6CF39", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3FF3D7AA-B10E-481B-B1D3-0BE0A6B1ADDC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 14, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email3@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA52218C-951F-4E2A-BD17-F406A6C59205", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3A9EDABB-0B69-4396-9993-33969635B7CB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9AED3D76-16DD-4DDC-84C4-BD7E0647DF46", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8ECB0717-8BD4-4E67-905E-3E43B9DCEFAF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2882920F-0E70-4EE5-9722-8E6FF0583648", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "2B2D48BB-D35D-4875-AE83-D560C09EBEAE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 3", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A46699C7-561B-4322-9F05-34EF9F415531", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 3\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "72px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "E16B39A2-764B-47CB-BF6E-24B20BD9E142", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96A9A800-CF21-4386-A70C-EBDEFF420D59", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0315EC63-2FE6-40F4-A1C1-27455BEDFA95", + "height": 56, + "width": 296, + "x": 0, + "y": 72, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "56px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "A727D5F7-A442-447C-AD38-07B3CEB4C7AD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FBAA5B73-7016-439A-8ECE-AE4B93228EC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28519FC2-BAF9-4A9E-9B18-D8F94B84A475", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 16, + "location": 0, + }, + ], + "string": "email2@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "121px", + }, + }, + "do_objectID": "5F7BA2B3-A9CF-402D-92A0-AB347195C176", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "83E36AE6-8A57-4153-9D10-AFD2B746D510", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 121, + "x": 72, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "email2@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "D85C9CAF-CFDE-42B3-9CA9-3EE80D1BC121", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4043F3F7-3F29-463A-AFDB-40FD91F8A48A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "133D7699-EC7F-47AD-856E-9921BB3F9143", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5438462409, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "8px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "9BD2455A-1177-4D1A-AC8B-877C4B0FA060", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89684842-C88B-4973-AECE-444DD1EEA895", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 8, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C2779719-6834-4E25-B4D6-053B73B1EE92", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FDF0B9B-6F55-4394-9D94-4F0F1B3E6788", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "email 2", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F9865297-9DE3-41E9-84BF-E173461582F9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"email 2\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "8EFB74BD-987A-47AF-8836-EFE9429FC6B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D82C88A0-1976-41C1-BC2F-6BA9A970778A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0E9DAB8-B7B3-4290-A4CB-FB9105A8724A", + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "72px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "296px", + }, + }, + "do_objectID": "B1075D1E-EB3A-40D0-B252-7451E2F3BC72", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9C36D43F-36A2-43CC-9C82-E4F8745ED3E5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 72, + "width": 296, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 1, + "curveTo": "{0.9932432432432432, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.9932432432432432, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0030405405405404635, 0}", + "curveMode": 4, + "curveTo": "{0.0067567567567567571, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0067567567567567571, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.027777777777777776}", + "curveMode": 4, + "curveTo": "{0, 0.012499999999999685}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.012499999999999685}", + "curveMode": 4, + "curveTo": "{1, 0.027777777777777776}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.027777777777777776}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9932432432432432, 0}", + "curveMode": 4, + "curveTo": "{0.99695945945945952, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9932432432432432, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "43EFDB71-9B3F-4811-A652-E1A8DB1DA1A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "D3410FA0-8CBD-4D39-8F7A-9B73D9B08C47", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M294 0,S 2 0, 2 0,S 0 0.9, 0 2,L 0 72,L 296 72,S 296 2, 296 2,S 295.1 0, 294 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "260px", + "position": "absolute", + "top": "24px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "2DCAACE4-D5CC-4F73-A2A8-C8C982A7683D", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CC2FE5E6-7CAB-4729-A898-38334BE507AA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B67263CD-774B-462D-BF39-A149BA6A1AC3", + "height": 24, + "width": 24, + "x": 260, + "y": 24, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "51C9D904-64E6-44B1-9616-BA4CBE991BA3", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B807F3EE-D3AE-4AC1-B82C-B3DE2C7B4539", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "085A6DB0-9975-4F29-8A2D-9FD96B731661", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M24 0,L 0 0,L 0 24,L 24 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "2px", + "position": "absolute", + "top": "2px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "9F805DE7-06DE-424A-A052-6CD62B32AA19", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "034CF2EF-EDAF-4699-9594-593635B87EE2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4E6B2F99-4561-407F-BF4C-7D1FEA3472EB", + "height": 20, + "width": 20, + "x": 2, + "y": 2, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "20px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "DAA1C5F1-3C4B-41A1-90EC-10E0484458E5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C997788A-3936-409B-8DB6-5F3981670993", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3EF1F069-C5CE-49B9-9A93-691B037BD561", + "height": 20, + "width": 20, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000001, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000001}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000002}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000002, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000001, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000002}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000002, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 20,S 0 15.5, 0 10,S 4.5 0, 10 0,S 20 4.5, 20 10,S 15.5 20, 10 20,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "10px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "10px", + }, + }, + "do_objectID": "B830B60A-2844-48F9-A022-A9E47E25E2DA", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC4148F6-77D3-4CAC-8B28-9231CFA5DA21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "ED694AA9-4D0E-4E50-80FD-82DBA9F67BFD", + "height": 10, + "width": 10, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 0}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.35999999999999999}", + "curveMode": 1, + "curveTo": "{0.5, 0.35999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.35999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 0}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{0, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.14000000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.35999999999999999, 0.5}", + "curveMode": 1, + "curveTo": "{0.35999999999999999, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.35999999999999999, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{0, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.14000000000000004, 1}", + "curveMode": 1, + "curveTo": "{0.14000000000000004, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.14000000000000004, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0.64000000000000001}", + "curveMode": 1, + "curveTo": "{0.5, 0.64000000000000001}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.5, 0.64000000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.85999999999999999, 1}", + "curveMode": 1, + "curveTo": "{0.85999999999999999, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.85999999999999999, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.85999999999999999}", + "curveMode": 1, + "curveTo": "{1, 0.85999999999999999}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.85999999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.64000000000000001, 0.5}", + "curveMode": 1, + "curveTo": "{0.64000000000000001, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.64000000000000001, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.14000000000000004}", + "curveMode": 1, + "curveTo": "{1, 0.14000000000000004}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.14000000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M10 1.4,L 8.6 0,L 5 3.6,L 1.4 0,L 0 1.4,L 3.6 5,L 0 8.6,L 1.4 10,L 5 6.4,L 8.6 10,L 10 8.6,L 6.4 5,L 10 1.4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "40F569EB-629E-43AF-B6DB-178EAC412B6E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C5EAC3C4-5363-4FEA-A4F1-9D44B44406E8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "19F01663-EF7F-4353-95B1-061E76EBB309", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"cancel\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 22, + "location": 0, + }, + ], + "string": "primaryemail@email.com", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "72px", + "position": "absolute", + "top": "35px", + "visibility": "visible", + "width": "161px", + }, + }, + "do_objectID": "C6E842E8-308E-4676-B78E-564D6FA3210D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CF895651-5D73-41E1-96AF-D2957CC3FD66", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 161, + "x": 72, + "y": 35, + }, + "glyphBounds": "{{0, 0}, {160, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "primaryemail@email.com", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0CB7C941-BD47-490F-847F-1446C170FEA9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9875BFB1-B0D8-4DCD-B905-5B7BE36A4104", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1D32A7A5-8569-43E5-AFE9-CA7A56A9287C", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.6999999881, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "length": 12, + "location": 0, + }, + ], + "string": "Contact Name", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "16px", + "height": "24px", + "left": "72px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "104px", + }, + }, + "do_objectID": "15596F2E-1CF9-4DD7-A436-78E9E471D8B7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8CE2DFDC-3F1F-4179-93C0-683FC166CA64", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 104, + "x": 72, + "y": 12, + }, + "glyphBounds": "{{0, 0}, {103, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Contact Name", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "76430B97-043B-4F8E-BAD7-21B62E10C1AB", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A8D138AA-7E14-4E66-8A68-0EF36BC7C924", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E3AB25A3-D85E-4121-8C50-65685E2C04C0", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "40px", + "left": "12px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "40px", + }, + }, + "do_objectID": "6563E652-9320-4AC1-8F08-5747329331AC", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "77163921-9871-44DF-898A-28D21F525C1A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 40, + "width": 40, + "x": 12, + "y": 16, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "67962D5E-C70C-4830-9281-A0CF6294FFF4", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9F552E55-8FC3-4F4E-B561-85A12CAF3135", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "13EA5C0C-FE2F-4702-AE61-3D8516E7EBA3", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + ], + "name": "open chip", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "784AF547-1481-4D5E-8C66-93D3CAAA7FDF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"open chip\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "BF1B81AB-AE5C-453F-8B6E-96462FCD7785": Object { + "scrollOrigin": "{187, 187}", + "zoomValue": 1, + }, + "C3625949-D986-454A-9835-E894A1794432": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-date-picker.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-date-picker.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "F48B402A-BF10-42BC-8523-C16A2E01B971", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "name": "Material/Light/Dialog", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "556px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "A354EC87-C51F-4855-9B75-DDE0A3F52754", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "91A576C2-6A9A-4D3F-BED1-C6C4370A0739", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "AD036160-EA82-4B6A-ADB9-129572CE3E93", + "height": 556, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 2, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "555.999999998099px", + "left": "-0.00000201463535631774px", + "position": "absolute", + "top": "-3.019895302713849e-7px", + "visibility": "visible", + "width": "320.0000020097797px", + }, + }, + "do_objectID": "68AB9A76-F646-413C-84B0-F555E439D187", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "45CC2A80-5014-44DF-A6BF-B2352321FD6B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D65F5237-3996-4253-9420-E3CCBF90BA33", + "height": 555.999999998099, + "width": 320.0000020097797, + "x": -0.00000201463535631774, + "y": -3.019895302713849e-7, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "dialog bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.75312742380683251, 1.2484252312359647}", + "curveMode": 1, + "curveTo": "{1.2468725677856276, 0.75157476876403528}", + "do_objectID": "D01614C5-7D54-4464-BA30-53DE44F9FB3F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.99999999579623011, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{-0.24954874041557873, 0.75045125802375723}", + "curveMode": 1, + "curveTo": "{0.24954874040058797, 1.2495487419762428}", + "do_objectID": "8E94630E-0C22-402A-873E-FED82B03E915", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-7.4954264546158371e-12, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.25090333626656247, -0.25000080578509032}", + "curveMode": 1, + "curveTo": "{-0.25090333211297938, 0.25000080577825212}", + "do_objectID": "898007DD-C46D-463A-A656-F1FE464EAE7F", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{2.0767915256975468e-09, -3.4190907499433488e-12}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2495548195455812, 0.25022102382467826}", + "curveMode": 1, + "curveTo": "{0.75044518048476361, -0.25022102273838404}", + "do_objectID": "A7893524-EA56-4335-B5A3-12D6C06E9EDB", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1.0000000000151725, 5.4314714836243111e-10}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "9CB97EFA-1F00-4BC9-B37D-6E6C0DA1F865", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.8, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.4, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.04936005799731481, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 0.5, + }, + ], + "do_objectID": "E70D5407-B298-46A5-83EE-BF6484BB7951", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 38, + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 19, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 12, + "color": Object { + "_class": "color", + "alpha": 0.22, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": true, + "offsetX": 0, + "offsetY": 15, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0.5, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"0.5\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M320.5 556.5,S 80.356 695.249, 0.5 556.5,S -79.789 139.5, 0.5 0.5,S 240.642 -138.623, 320.5 0.5,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "172px", + "position": "absolute", + "top": "519px", + "visibility": "visible", + "width": "114px", + }, + }, + "do_objectID": "94C194EE-5146-455B-B99A-22D1219A3412", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "59CFF41D-2CDC-4499-8E72-533529E4EFF5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "57F2B501-5E1D-4419-A2F2-93091911F1CB", + "height": 16, + "width": 114, + "x": 172, + "y": 519, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 1, + }, + ], + "string": "OK", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "19px", + "left": "95px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "20px", + }, + }, + "do_objectID": "B0B53EF8-7535-460F-A46A-BA1C44118B99", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "68B0F189-2A59-4F7D-9BC2-0FF70A589B3D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 19, + "width": 20, + "x": 95, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {19, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "OK", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "37709926-8A1F-44FC-97A1-8A33DC0188FA", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "FC868ADF-9CC1-411B-B370-2ED1D092385F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "95469715-5393-4644-97A7-1FE3C8983873", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "CANCEL", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "344B41E5-B881-4603-9E90-8CFB60CC8462", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EA9C96F-74B4-4C27-BE9E-1E71FF54CB83", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FE27502F-0D6A-4A6A-BACA-EE01CC9F251B", + "height": 16, + "width": 56, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "CANCEL", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "blur": Object { + "_class": "blur", + "center": "{0.5, 0.5}", + "do_objectID": "85E54241-DC7E-412F-B69C-780B9D51375F", + "isEnabled": false, + "motionAngle": 0, + "radius": 10.001000049995, + "saturation": 1, + "type": 0, + }, + "do_objectID": "06572B30-63ED-4923-A6D0-3027BE015189", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E202510E-CABA-4718-BF24-45884FC07196", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ok + cancel", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5E510DA1-6856-4D7B-A8B1-F06521491FF4", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ok + cancel\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "C912F160-6408-4359-88CF-F2CAC04A02C8", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D0CD3266-9FCE-4AF3-9734-8E3DD93B79AC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A7B771D-6831-4708-91DC-BAE505CBEE0C", + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "199px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "320px", + }, + }, + "do_objectID": "746DCEED-74FC-43A9-9139-2C96CF6728DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4372D904-B35A-4D53-9A2B-489DA7C46D18", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 199, + "width": 320, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "header bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "do_objectID": "0B04F9B3-AF57-4735-B8BE-0D589BEB7350", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24746906759014342, -0.24902547682027013}", + "curveMode": 1, + "curveTo": "{-0.24746906759014342, 0.24902547682027015}", + "do_objectID": "BAA10E5D-08FE-4195-AA63-CB9F6D8EE5B5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.0058846929683962, 5.9142642898453594e-05}", + "curveMode": 1, + "curveTo": "{0.99411530703160411, -5.9142642898453594e-05}", + "do_objectID": "AD7B3C47-3040-47E8-97E3-1B73BE5D8BF4", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "do_objectID": "BC3894F9-4EB7-49A1-9F79-BE181757DDD5", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BA2EB174-DB41-4503-9602-B3577A1631E5", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "A3688127-CD38-4386-8BD9-C5C1068781C8", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,150,136,1.00)\\"", + "d=\\"M0 199,S -79.19 49.556, 0 0,S 318.117 -0.012, 320 0,L 320 199,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "31.99999999997413px", + "left": "1.060561771737412e-7px", + "position": "absolute", + "top": "2.546585164964199e-11px", + "visibility": "visible", + "width": "319.9999998939438px", + }, + }, + "do_objectID": "10BBA48B-E3B6-42F0-871C-74E86955FD93", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D046A164-B8B9-4861-8B2E-72851D06FC13", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C8CD1AF0-78F3-4FCD-95EA-974FD054A7D7", + "height": 31.99999999997413, + "width": 319.9999998939438, + "x": 1.060561771737412e-7, + "y": 2.546585164964199e-11, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bar", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.24999999511609125, 0.74999999999979827}", + "curveMode": 1, + "curveTo": "{0.25000000504962155, 1.2500000000002023}", + "do_objectID": "4C396557-E07D-45A4-A8E9-18AA4D6EF224", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{4.9667651341541571e-09, 1.0000000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{0.24687257374643226, -0.24842523169513558}", + "curveMode": 1, + "curveTo": "{-0.24687257440928329, 0.24842523169351868}", + "do_objectID": "B47E2F7E-C05B-4660-873A-6BA8AB8F82F6", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{-3.314255537777842e-10, -8.0840889538146144e-13}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 2, + "curveFrom": "{1.2507861404771796, 0.2507861405226906}", + "curveMode": 1, + "curveTo": "{0.74921385952282049, -0.2507861402658404}", + "do_objectID": "B14DF15E-8862-48F6-9659-24860D844CE9", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.2842510388477008e-10}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74193548581429836, 1.2419354832509284}", + "curveMode": 1, + "curveTo": "{1.2580645141857014, 0.75806451674907216}", + "do_objectID": "6169919A-9D22-48AD-902C-D70D656097DC", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1.0000000000000002}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "698D620C-319E-4D30-9443-81E09A53E174", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.4823529411764705, + "green": 0.5372549019607843, + "red": 0, + }, + "do_objectID": "0541D78C-8844-4E42-AFD2-8025401D4464", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,137,123,1.00)\\"", + "d=\\"M0 32,S -78.999 7.95, 0 0,S 239.748 -8.025, 320 0,S 402.581 24.258, 320 32,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "80px", + "height": "212px", + "left": "114.5px", + "position": "absolute", + "top": "70px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "56E1D22D-9E5B-4BE5-8CEC-CBC0FB86875A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3B87F437-8696-4D99-8BBA-D6062290F7D1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 212, + "width": 91, + "x": 114.5, + "y": 70, + }, + "glyphBounds": "{{0, 0}, {90, 94}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E0D275FE-96AE-457F-BE66-FDA01D0DE584", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "69488B0E-DD7A-4339-ADA2-E959B32DB647", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 80, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 6, + "location": 0, + }, + ], + "string": "Friday", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "38px", + "left": "140.5px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "39px", + }, + }, + "do_objectID": "D4B2344A-3C8C-45D3-A0F5-2561C91713BD", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CEAF5E74-588E-4943-9204-0FB9984E8AEE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 38, + "width": 39, + "x": 140.5, + "y": 7, + }, + "glyphBounds": "{{0, 0}, {38, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Friday", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0B55AAE3-5927-4250-85DE-DD626AA3B62D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "35735B19-F5D6-41F5-85C8-7A12DEEC970A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 3, + "location": 0, + }, + ], + "string": "MAR", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "133.5px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "53px", + }, + }, + "do_objectID": "43E4CFAB-26B5-430B-A06D-6CAA35FFC384", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E818E2D-E7DC-4FC7-9239-B827E28FD9CE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 53, + "x": 133.5, + "y": 46, + }, + "glyphBounds": "{{0, 0}, {52, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "MAR", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A48CD42A-059A-4B3D-84A2-129B9F21C398", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6688D86D-AFBD-445F-8ADF-347DA9013899", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 4, + "location": 0, + }, + ], + "string": "2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "64px", + "left": "132.5px", + "position": "absolute", + "top": "162px", + "visibility": "visible", + "width": "55px", + }, + }, + "do_objectID": "C618D274-3477-47F7-98E3-8DE050D86D6B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E369142A-A5D4-4A17-9CB2-4A6D234ABFCA", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 64, + "width": 55, + "x": 132.5, + "y": 162, + }, + "glyphBounds": "{{0, 0}, {54, 28}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "2C7544BA-CE71-4015-9F4E-DFA33E6984BF", + "opacity": 0.5423274253731343, + }, + "do_objectID": "421EB7CE-0893-44CC-BDA4-B1E0546D5562", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "FC15D976-39F6-4F22-961C-21C502AB67A9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "header", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0A4E76A5-98F8-4374-84BC-003A0A2BB0A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"header\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "288px", + "left": "21px", + "position": "absolute", + "top": "211px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "E9E00624-EF50-462A-A9CF-0EEBA09C7640", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C85CD692-A83C-46A2-8120-752586442F7E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1B917096-8463-4675-B947-62B85C1D5FFE", + "height": 288, + "width": 278, + "x": 21, + "y": 211, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "34px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "0EA9A70A-5109-4115-ADD4-7BE2E7A18768", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4C45D1B1-E180-4711-9EC7-CAA54D1817DF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "54680165-5610-45E9-8D91-D909E71A1510", + "height": 14, + "width": 278, + "x": 0, + "y": 34, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "M", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7CCB7BF8-82CF-490F-9A03-8C6732819C44", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2E31A00A-57C1-466A-BCF8-1421931D2191", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A681D9F1-DFF0-465C-93FD-A82FA4766975", + "height": 14, + "width": 14, + "x": 44, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "M", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "911371BB-173C-4187-A744-2C860A116095", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A301C58A-8A85-4E14-B96E-FD2AAF783ABB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "B467A2AB-C794-46C5-A2CD-8A0B2FCAA2F0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7F31AAFE-584D-4544-B18A-17625A6BD624", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A148D934-C0C6-4022-96C9-78E94F82880E", + "height": 14, + "width": 14, + "x": 0, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D971F295-F7E8-4AC7-A393-626A95CA6597", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0B8CC6F3-0523-455C-ACC1-244652339715", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "W", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5440E012-7C1B-4722-8532-5019C6E1F927", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "6057E40E-09BD-4751-932C-F4BB52AA0E08", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4C69AC5B-3D08-4E81-988D-DC262D9CD5F1", + "height": 14, + "width": 14, + "x": 132, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "W", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8CCA87BF-A825-4D8F-A03A-F8D23FBA02DE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CB8DE44D-AADA-4BA0-8716-F8F6510C40AB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "DAFDD76A-9899-4BE1-B1C2-FA7FA4F663D4", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "24ACC561-1CC3-4A37-AFD3-97A7AC72C825", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "66D69BDE-4CF4-4218-AC2D-5B40E36EA5BE", + "height": 14, + "width": 14, + "x": 176, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D4512549-3EB9-4EE0-A7D5-C3FE76AA8CA9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3F287EF5-19F6-4D3E-A426-FADC6B3B604A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "F", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C71B7899-6250-4AA6-BC2D-D3A0299848A0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "AB187528-2246-4915-9D01-8CEAEF19CA44", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0281F866-0558-4F3E-A8ED-1E8B7F6A4EFF", + "height": 14, + "width": 14, + "x": 220, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "F", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5140FFDB-8053-4C61-A5E7-809527FDCE2A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9E18E830-F658-4E79-8261-5A51EDF7A7B4", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "S", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29AAFC15-F840-441F-B889-3BF4EE496EA3", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0A78585C-A045-4E96-B57E-4600C80270BE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "87F8001C-0498-4A3C-A1D1-F9BB1F797241", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "S", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2485C638-8D4F-4A01-A800-2EB198F0B645", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "393084A4-5C9D-474F-A885-4CB33ED80442", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "T", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "29C9F8D0-E7D7-4298-A0B0-33FBB71FC77A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F3129FDF-B34B-4519-9FED-749498A5F1B3", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1121F178-C600-4579-B78C-28A2AA8067B6", + "height": 14, + "width": 14, + "x": 88, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "T", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E9935BBD-297E-415A-AB49-1FF2303FDEEE", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "616B85BD-52D6-4E92-B218-544E04EB7B10", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.5433367301, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "weekdays", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1DC7C7E7-6C5C-4ACF-8574-479F8B24B4A2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"weekdays\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,136,1.00)", + "border-radius": "50%", + "display": "block", + "height": "44px", + "left": "161px", + "position": "absolute", + "top": "143px", + "visibility": "visible", + "width": "44px", + }, + }, + "do_objectID": "7FC733C7-579D-4CB0-9CED-AB703214F4AA", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "54632B3C-4143-4148-9E22-78B347650D9C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 44, + "width": 44, + "x": 161, + "y": 143, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "selection", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "EAA76313-0A27-4C24-93CE-EC6172DE24EB", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333333334, + "green": 0.5882352941176471, + "red": 0, + }, + "do_objectID": "48CC3D2A-2116-48D8-A98C-9F6E363469AF", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"selection\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "214px", + "left": "0px", + "position": "absolute", + "top": "74px", + "visibility": "visible", + "width": "278px", + }, + }, + "do_objectID": "B2C4F1E1-9E20-4332-B9C5-BBBC1E7A66B0", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FB58F3C6-A704-42FE-BD39-35C019B9AB39", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5D394602-8A8F-4785-ADBE-B9108022E918", + "height": 214, + "width": 278, + "x": 0, + "y": 74, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "995E15EE-E70B-4ECF-8730-215FD3549D58", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "ED61791D-E44E-411B-B843-4033A1C63F2C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F12056A2-904A-4898-88E3-73A0DA594371", + "height": 14, + "width": 14, + "x": 0, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9C89BC2F-3C7F-4ED8-AECD-B765D1110682", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "CEB37737-E3E9-45F2-8322-55BD5D3A3B18", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "31", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "200px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C6BF7A40-7BD1-415D-BDA6-FE739B805AD7", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3BD9ED0E-7A6E-4474-B15B-F5690494DBAC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "73D5D4C5-4C62-406C-9336-F7064D453989", + "height": 14, + "width": 14, + "x": 44, + "y": 200, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "31", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "51934C18-9ED6-432E-A204-EDE432702265", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "7FA5C886-1132-43FB-8318-8D7483E6327B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "1", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6742CF8B-B00F-4816-95D4-7F9EEAEF013A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CBEC3680-396E-49B1-A7F2-D541B61A55A5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "9BF32FE7-7E1E-46F4-9F13-DC1823B9A0A1", + "height": 14, + "width": 14, + "x": 264, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D7EE7BFF-67B8-42E2-B332-D231F89F6167", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1E47BD16-32FB-482A-93A0-3F4C160074CE", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "16", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "EEA909CF-B0EE-46F0-B1C8-1B88EC47DEEF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "96AB7313-7589-415C-A2D5-0703D7CD5AB9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A5024156-B4E2-411F-A874-025142A54CC7", + "height": 14, + "width": 14, + "x": 0, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "16", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CA2382A7-E62C-436D-96EB-D06F15878918", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "DCB851A7-B376-481B-99F1-7F71B06247F8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "17", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "A7E8FD20-1AF4-4E5E-B216-5494276ACD84", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "98C2E01C-2EF8-4DD4-8C7F-8FEDF9D5E27B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E2F06090-9535-4A5A-9237-050B756B3317", + "height": 14, + "width": 14, + "x": 44, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "17", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6F9F1AE4-6FEF-4B65-B216-1FCC2484A984", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A4E8D068-B381-4A1D-BA17-130683147534", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "19", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "642FC344-DEA2-4D1B-8F59-AC9D34CC91CB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F99D39ED-0063-45F8-BB7E-D9FF9823FD2B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "5BA1EC31-45A7-4056-9B3E-A90F83BD5D86", + "height": 14, + "width": 14, + "x": 132, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "19", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6712CE3E-7C71-4BF1-AD9F-27FCC1029811", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "82FE0735-231F-4C07-A9A9-E8B32744CE39", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "20", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "060D8476-F9A4-4DB5-80AE-EA3791B59CB0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0823E4BB-E9A1-4F61-A9FD-AFEB9F6564B5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "072ED673-D56F-4183-8BC3-242F53300474", + "height": 14, + "width": 14, + "x": 176, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "20", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C003B87F-1CED-49C9-8431-F1793659B67F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0DB703EB-1DE7-4160-9A13-21182645FC2E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "21", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "7410EC60-E05A-4370-AEF8-E76537C2566F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BFEB198-63E7-4B3E-9FAE-9E4DDCBC34AE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "EE7A9B0E-63F4-4583-B304-07506EBEEF44", + "height": 14, + "width": 14, + "x": 220, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "21", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "598A2F2D-607D-4D02-8D3D-0D587834237C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "585F3D41-0BA1-4449-906A-20EFE006C77F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "22", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C0756F31-4596-487E-8BDB-C145E90F1241", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "89A4E2DE-1BC9-4271-A029-12E75BC7ED67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A585901-0728-4C6B-944C-99768D50EB80", + "height": 14, + "width": 14, + "x": 264, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "22", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "12E7BC07-22AD-48E9-926E-C719370E5363", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "720CB2EB-24E5-4657-A713-7BEBF17158E9", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "18", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "124px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "72CDB22A-7E00-4FB8-BB9A-B07DF9614F3A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B13D592C-2D38-442B-AF28-ADDC706DC077", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1D56C663-72C8-4031-A082-F913D0D76F7D", + "height": 14, + "width": 14, + "x": 88, + "y": 124, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "18", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56D84CB7-654D-45C5-95CB-763CB24F2D88", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "32F0FA3F-E389-4057-8EA2-068C45460576", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "23", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "05C49A63-F4D8-4477-9A37-8B6A0D06B7E6", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "FEA69091-E144-4547-84BF-6E4BE2AB1B38", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F4C039E8-B9A7-4714-9147-4B88DE7D5E67", + "height": 14, + "width": 14, + "x": 0, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "23", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "A929AE0A-D38C-47CB-977E-8FCB390C9402", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "0D68B251-FC33-4BA9-B636-EAE85DE51D07", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "24", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "37124DC1-066F-4C48-A4D2-F5B713C3DF40", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E9479D01-4197-4753-A4BA-65A78423BDD1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3C67D09A-0058-4CC2-8238-51862E2A9853", + "height": 14, + "width": 14, + "x": 44, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "24", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "974A8723-FE4B-4A68-8396-7C3B2425BC52", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "3E7C3D57-D17B-4093-B3E2-219663B87204", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "26", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C9560BC4-A576-47DD-8186-A3795533D89D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4FA6806A-5487-4B6D-A043-D0A3F4AC3B60", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C963E671-58F3-4470-87EF-ED9E41F4DB38", + "height": 14, + "width": 14, + "x": 132, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "26", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B3F5D1B7-9966-4762-9789-E36B9B72E29F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "58957F63-8E1F-4A5E-8097-98AB255E4BA1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "27", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6152FDBB-88B2-43C3-8439-268918151023", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7A2346FB-95EB-49E7-90A5-7ABBF1D0397C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C78C5CD3-346E-464D-AE4C-BFA801F8389B", + "height": 14, + "width": 14, + "x": 176, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "27", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5EDE4D84-2E8A-47B6-98BC-BD553FDB1670", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4296C5F1-41B2-452C-B584-25B353DB1751", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "28", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "C8A9DF12-C6B8-43CE-88EE-EF6AC284BCF0", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9ED0F24C-B1DE-49AA-BC82-9F41CC3C2F9E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "74CB11DB-5914-4CFA-860C-350A14FDC2EB", + "height": 14, + "width": 14, + "x": 220, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "28", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C956071C-EC7B-4314-8E70-1BF930988DF1", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "A009AA8D-D191-44AD-BF15-2782CCB080B6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "29", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8FC04F6A-797D-4D2E-BB98-99A68A32240C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "36C643D5-5211-4711-B96F-A5DFAFDD962A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "438E7173-E5FB-4D17-AA44-9C8A3F9F6B6C", + "height": 14, + "width": 14, + "x": 264, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "29", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0864CB68-D937-4B91-8022-C1F3229929DF", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BE0EDAAF-053A-4A7D-97FA-865014345A8F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "25", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "164px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "377138B6-36FD-48E2-AC13-7C8B6210D0FF", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8A957919-75D8-4235-89A8-A1C0A58711F1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "FB0C04A6-7BA5-4D57-A8C7-675D43E7044E", + "height": 14, + "width": 14, + "x": 88, + "y": 164, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "25", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "72A48CE3-3FC5-45C2-B286-F03334849992", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "6E92F77B-5F85-4EDE-9710-091F64A46548", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "13", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "8E5572A4-A222-4D3D-A5D1-B4F8A98E831A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3C455BAA-E185-4AFA-9533-BADD325F3409", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "60C0CDF3-05DF-4ABC-8665-A1B932D123F8", + "height": 14, + "width": 14, + "x": 176, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "13", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "48F7BA0C-C7A7-4EC3-90A5-09A0D83B5BF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "8DD1A85A-9DE7-4531-8513-48F7DE6F2EEA", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "9", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "6EBD7421-5071-4015-960B-8CF021B3AF66", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C082092D-CB6A-482E-864D-392A1B21C829", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0CCC7A10-4082-4616-AEEE-C0F55B1751AA", + "height": 14, + "width": 14, + "x": 0, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "9", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "D704F733-760C-44EE-87A3-329CA47423CB", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B7FC8D9F-75E3-4F90-A05B-CE9ED2AAE4A6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "10", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "BD0D4F3B-D0FD-422B-B951-C0CA3C3D19EB", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7CE8C684-2AA4-4798-B9F5-69DCF1CFEC06", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "F5689CF9-A4A9-4DC8-A846-F9673FEB4FA8", + "height": 14, + "width": 14, + "x": 44, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "10", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2D77EB79-3949-4AC1-8160-0A586FB3DCE2", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "1F2B0D65-7B0F-4363-923D-64F8525E1B17", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "12", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3F12B043-1DF3-4F49-A3EE-37ADAE24CCD8", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1F74D864-11A5-463B-974D-F67EFCB5540E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2D32487D-B3AF-4C52-A340-5170C22D68F2", + "height": 14, + "width": 14, + "x": 132, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5795907C-6CD6-4FF2-95FC-5F5D8DF5FF47", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "48BF4896-41B7-403D-9AE9-6394D84FE2DB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "14", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "5ECA9077-2F1A-49D7-B231-574C9DFAA04E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "69DA4073-DFE5-4567-91EA-E106E479CA82", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "E4E18355-E4AC-4616-A2D6-7D6B5F2CA483", + "height": 14, + "width": 14, + "x": 220, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "14", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9B4A3E67-BD20-41C0-B0AB-A5780919F1E7", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "BB18A6F0-0039-40F0-96ED-2FBAA0151EFF", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "15", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "9556DC5C-E213-429F-A5BC-5AD9CF48681A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8708D7E8-FD7F-4DA2-A3AB-1274DD685E91", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "0A8FAE6F-2690-4DC0-8DF8-8546F5F74654", + "height": 14, + "width": 14, + "x": 264, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "15", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "28291AD3-6872-4435-8890-B7A3860D6E19", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9EC8E6BD-9892-49B4-A068-5E8DE025F8C1", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 2, + "location": 0, + }, + ], + "string": "11", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "84px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "F1507388-B653-4511-BF77-FE5BB49273BC", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B972EE15-1FE4-4038-9E72-119FA38B2C55", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "46FB645A-6907-4277-A4B2-061A50CD8CF8", + "height": 14, + "width": 14, + "x": 88, + "y": 84, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "11", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "BB1CB6DF-A471-409E-A72A-81F5B18E25C9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C09A9AE1-FBE3-4B6A-8F80-319EBBE38312", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "7", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,150,136,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "220px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "31CC0D64-C0A7-436C-926E-1DBE207F0310", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2AC689E8-4EC5-44F7-8641-F422E92625B8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "BC422849-F0E5-4248-BA8F-E933FFF8D07E", + "height": 14, + "width": 14, + "x": 220, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "7", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FC5460BC-F61D-4AEB-89AC-C347ECF7EB98", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "5634E7F0-48F9-4609-A6C5-8ECDECF51255", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5333333333, + "green": 0.5882352941, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "2", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "0px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "4A8CD098-BB09-45AE-9AAD-C22B25C8951D", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3881D7D1-38C4-4059-A2C2-A1D9AB31675D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7A5215C0-DA0F-429E-A578-65A1E17643DD", + "height": 14, + "width": 14, + "x": 0, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "2", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "84F0FF3B-6016-4A63-AE28-911A1872A49E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "486B0065-A87C-4BFE-9C57-A8E92D42A729", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "3", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "44px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "2EFF4885-0F96-41FB-B0DF-FB68A47C5373", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5C6AE705-42DC-46CE-91A0-CA196563A887", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "900C44CB-9A24-4E81-953F-74043464AA6E", + "height": 14, + "width": 14, + "x": 44, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "3", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C99B167E-DCB8-4555-A102-367E07FC6987", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "F48CFD73-6CB3-4320-A527-86D2691B4AF5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "5", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "132px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "635BCB8E-8BAA-4942-B462-A695982BD18B", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "710DA589-5846-4B59-8C03-5B20E2918419", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6D4CD0C1-071E-4EB9-B2B6-73798F36225F", + "height": 14, + "width": 14, + "x": 132, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "5", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E19D57BA-3451-4580-939E-301287E89C65", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9B0D3715-2B53-47BD-90D0-B72C60A2F9F6", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "6", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "176px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3A943487-0DD2-4013-B627-79179EE3753E", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1BE7121C-D336-48BB-9DE4-5C100EA723FF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2998EC74-1A7E-49F1-935D-9A8E94B9F599", + "height": 14, + "width": 14, + "x": 176, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "6", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1FD002DD-1E3C-4218-9C99-5F3658265C1E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "C74FC4E3-3D05-442D-BA27-6942E8C43ADB", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "8", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "264px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "65F5B652-30AA-46EF-9848-31B838542CDA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C755D3C7-AB13-4290-962F-107FC370B0C9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2E8C8B12-DCA2-467A-AA97-23F9D6671313", + "height": 14, + "width": 14, + "x": 264, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "8", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CFD743B6-2A81-4C4D-A553-35EF3FA9CA93", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9602C6FF-F55D-4288-BF71-BA89C50AD31B", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 1, + "location": 0, + }, + ], + "string": "4", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "12px", + "height": "14px", + "left": "88px", + "position": "absolute", + "top": "44px", + "visibility": "visible", + "width": "14px", + }, + }, + "do_objectID": "3D28A3E0-06C6-46D8-9D49-74E2889D999F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5EFD64D6-B59C-4411-A0E9-D5A360AA034B", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8434E221-0969-4C42-8026-4D8AE30EAAEF", + "height": 14, + "width": 14, + "x": 88, + "y": 44, + }, + "glyphBounds": "{{0, 0}, {14, 14}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "4", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "F5900C93-8D84-4B5D-9297-26C1D117AB68", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "38D7DFB9-61C1-4FF9-8709-0349CD289D0A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8677819293, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 12, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "dates", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "066436C1-A015-40CB-93A6-2568E63BF83D", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dates\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "March 2014", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "101.5px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "76px", + }, + }, + "do_objectID": "4C11C1D3-DD6B-421C-A379-B9BEA6A35B59", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "26D17DF6-4B49-4EBB-98BA-B6D7C10C473F", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "02E65290-D089-4262-B5CE-2475D40D5AD1", + "height": 16, + "width": 76, + "x": 101.5, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {76, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "March 2014", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "169B5AAB-726B-4D0D-9276-18F3F2194502", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9055483B-992A-46D8-9AF1-DA3F0546CB8E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8725656703, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "calendar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "8B893904-CF99-469F-96A9-0930583B7E89", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"calendar\\"", + ], + }, + }, + ], + "name": "dialog", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B7E17374-D9AD-417E-9616-494EFFF2147F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"dialog\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "DF58F6C1-4219-4E6B-86D1-3F805B49AD2E": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "F48B402A-BF10-42BC-8523-C16A2E01B971": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-notifications-heads-up.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-notifications-heads-up.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "A9C33D52-8B9C-4D33-B3A2-119099BA92B4", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "name": "Material/Light/Divider", + "value": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "name": "Material/Icon dark", + "value": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.5399999618530273, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "name": "Material/Light/Body 1", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + Object { + "_class": "sharedStyle", + "do_objectID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "name": "Material/Light/Headline", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/79F9080C-DFBE-41C5-8884-E66187BAF505", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "79F9080C-DFBE-41C5-8884-E66187BAF505", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "8E7999E1-2931-4401-A108-23FBD7583581", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2EE6736B-3404-4E98-8268-61742FEBD393", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8409D277-0B98-45B7-B08A-AB84800535C6", + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "160px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "344px", + }, + }, + "do_objectID": "55789A76-C34E-4D99-B58A-E534D9231281", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "99F15D80-0008-4A7F-B22E-C211AE1FC2FB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 160, + "width": 344, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "card", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.9941860465116279, 1}", + "curveMode": 4, + "curveTo": "{0.99738372093023264, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.9941860465116279, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0026162790697673759, 1}", + "curveMode": 4, + "curveTo": "{0.0058139534883720929, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.0058139534883720929, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.98687500000000006}", + "curveMode": 4, + "curveTo": "{0, 0.99437500000000001}", + "do_objectID": "6B40E147-E6C5-4078-A04D-6B3DAA2EFEA1", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.98750000000000004}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.0056250000000000354}", + "curveMode": 4, + "curveTo": "{0, 0.013125000000000008}", + "do_objectID": "E3E3CEE2-64BC-462F-860B-8B0E6FDCAB11", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.0058139534883720929, 0}", + "curveMode": 4, + "curveTo": "{0.0026162790697673759, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.0058139534883720929, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99709302325581395, 0}", + "curveMode": 4, + "curveTo": "{0.9938953488372092, 0}", + "do_objectID": "62A6AD0F-CCEE-4D0F-B2D3-17535ED9FD84", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.9941860465116279, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.99970930232558131, 0.013125000000000008}", + "curveMode": 4, + "curveTo": "{0.99970930232558131, 0.0056250000000000354}", + "do_objectID": "BD65A1C5-A071-4A24-8A64-9D32574BE786", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.012500000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.99437500000000012}", + "curveMode": 1, + "curveTo": "{0.99970930232558131, 0.98687500000000006}", + "do_objectID": "0BEBB06C-5710-4BD6-913A-A410E1F5521A", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.98750000000000004}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.8, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.02, + "blue": 0, + "green": 0, + "red": 0, + }, + "position": 0.95, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.04, + "blue": 0, + "green": 0, + "red": 0, + }, + "do_objectID": "DD563321-B16D-48DB-971E-EFA5CBCC9B68", + "position": 0.9864078443877551, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 8, + "opacity": 1, + }, + "fillType": 1, + "gradient": Object { + "_class": "gradient", + "elipseLength": 0, + "from": "{0.5, 0}", + "gradientType": 0, + "stops": Array [ + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.2000000029802322, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0.1, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.0490476332782268, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 0.2, + }, + Object { + "_class": "gradientStop", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "position": 1, + }, + ], + "to": "{0.5, 1}", + }, + "isEnabled": true, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "9BA61E04-064A-43BA-BE20-A41809BBCE07", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.9803921568627451, + "green": 0.9803921568627451, + "red": 0.9803921568627451, + }, + "do_objectID": "9DAE72BE-FEC5-43AC-8DF6-3CA503C9F981", + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "A0D59076-EC11-4C4E-9E20-E28EE23CFF84", + "isEnabled": true, + "offsetX": 0, + "offsetY": 8, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 8, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "F7F53853-CC34-42F3-980C-47DD7560D641", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "6BD7C012-8C17-4603-98EA-3C68A8F44378", + "isEnabled": false, + "offsetX": 0, + "offsetY": 2, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 2, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "47323438-6000-4454-B4AE-6DF79FCC38E2", + "isEnabled": false, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#979797ff\\"", + "fill=\\"rgba(250,250,250,1.00)\\"", + "d=\\"M343 161,S 3 161, 3 161,S 1 160.1, 1 159,S 1 3.1, 1 3,S 1.9 1, 3 1,S 342.9 1, 343 1,S 344.9 1.9, 345 3,S 344.9 158.9, 345 159,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "3px", + "left": "88px", + "position": "absolute", + "top": "94px", + "visibility": "visible", + "width": "256px", + }, + }, + "do_objectID": "BD1F3F7D-2E73-43ED-B734-5DCB80245774", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF9D2F4-25A2-488A-96EF-77DD5FDD4E45", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B7921892-9955-415B-8B6D-F87E6273671E", + "height": 3, + "width": 256, + "x": 88, + "y": 94, + }, + "hasClippingMask": false, + "isClosed": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "divider", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.001953125, 0.48611111111111105}", + "curveMode": 1, + "curveTo": "{0.001953125, 0.48611111111111105}", + "do_objectID": "1094F20B-DB68-4378-AA21-AEE9F2AB8135", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{-0.087891101837158522, 0.6041666666666663}", + "curveMode": 1, + "curveTo": "{-0.087891101837158522, 0.6041666666666663}", + "do_objectID": "ADB348CB-795D-44D7-95F7-8C7327FAE504", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "0D4957BF-8525-4E4A-9AC1-785B9EFE17C9", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "position": 0, + "thickness": 1, + }, + ], + "do_objectID": "60C9804D-930D-445F-BC3C-1DCB154176A5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 1, + "paths": Array [ + Object { + "attributes": Array [ + "stroke-width=\\"1\\"", + "stroke=\\"#0000001f\\"", + "fill=\\"none\\"", + "d=\\"M1 2.5,L 257 2.5\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "length": 13, + "location": 0, + }, + ], + "string": "Incoming call", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "20px", + "left": "88px", + "position": "absolute", + "top": "19px", + "visibility": "visible", + "width": "85px", + }, + }, + "do_objectID": "F278ED26-968D-44A1-93FF-B1D9CC51840C", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A847C42A-97B6-4D62-B930-84E2B38C526E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 20, + "width": 85, + "x": 88, + "y": 19, + }, + "glyphBounds": "{{0, 0}, {84, 20}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Incoming call", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "7524EF95-E92F-4738-8F0B-270F756BCC15", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "21FF1AC6-5C46-4C6E-95FA-BFB7CF9A43C6", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E2D73D81-DCAA-4AD0-AC02-E4EF2AE2464E", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 14, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 20, + "minimumLineHeight": 20, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "length": 15, + "location": 0, + }, + ], + "string": "Scott Masterson", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.87)", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "24px", + "height": "32px", + "left": "88px", + "position": "absolute", + "top": "42px", + "visibility": "visible", + "width": "180px", + }, + }, + "do_objectID": "617AEC1F-71BF-4D17-88C1-D4449A31307F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4167CE6C-984E-49B8-BF3A-5007AA2A0500", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 32, + "width": 180, + "x": 88, + "y": 42, + }, + "glyphBounds": "{{0, 0}, {177, 32}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Scott Masterson", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "B9611F0C-2E3E-49FA-BB1C-11286A9F342F", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "71903DC8-0CDD-4066-B398-A13A7D037F4F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E370DCC3-B119-40FD-8576-BC4EA067D637", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.87, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 24, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 32, + "minimumLineHeight": 32, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "88px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "81px", + }, + }, + "do_objectID": "66B17F4E-F264-4B70-AA07-79FF01C7C87A", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "4D7B8B3B-F803-49B1-B8A2-75E725088B9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A867450F-8A37-4985-A1A7-55A6DDDDAFDA", + "height": 24, + "width": 81, + "x": 88, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "IGNORE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "50px", + }, + }, + "do_objectID": "41897058-D51E-4F23-8504-3D7FF3441F95", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5D8AD0F7-5C5E-45F6-A744-EB475F20F810", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 16, + "width": 50, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {49, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Ignore", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6A74DFEC-54BD-4FC9-B183-6BF05FAAC5EA", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "988113A0-75B4-43A1-91E1-1C6052CB589F", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "5417E316-45B2-4E5A-B4AC-45DF97D555C5", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1DACA3E-BBDD-4A5D-A047-40158E028AB1", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "6B2D0E1E-99DD-4BE2-92A1-669C16C12ABA", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "0FA1C276-F933-4F8E-B2FD-880D6EE9A445", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "16B90922-8BE4-43C6-BF02-920BBB23D02A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "C6EE7767-31F7-4620-BF0F-0F399E50D9ED", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "14px", + "left": "5px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "13.999px", + }, + }, + "do_objectID": "A8272C05-A42D-44B7-9604-89911D5E7674", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0792FEB8-751E-477A-A490-767093A2F55D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 14, + "width": 13.999, + "x": 5, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "shape", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.39900000000000002}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.39900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.39900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 0}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{0, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.39895706836202588, 0.5}", + "curveMode": 1, + "curveTo": "{0.39895706836202588, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.39895706836202588, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{0, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.1010072148010572, 1}", + "curveMode": 1, + "curveTo": "{0.1010072148010572, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.1010072148010572, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.50003571683691694, 0.60099999999999998}", + "curveMode": 1, + "curveTo": "{0.50003571683691694, 0.60099999999999998}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.50003571683691694, 0.60099999999999998}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 1}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.89900000000000002}", + "curveMode": 1, + "curveTo": "{1, 0.89900000000000002}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.89900000000000002}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.60104293163797429, 0.5}", + "curveMode": 1, + "curveTo": "{0.60104293163797429, 0.5}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.60104293163797429, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10099999999999985}", + "curveMode": 1, + "curveTo": "{1, 0.10099999999999985}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0.10099999999999985}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.89906421887277665, 0}", + "curveMode": 1, + "curveTo": "{0.89906421887277665, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.89906421887277665, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "CD5153DD-DE3E-456F-A211-3446FE4F6D78", + "opacity": 0.5399999618530273, + }, + "do_objectID": "6B634C74-B793-42E3-AAFE-D802492E6FB2", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M7 5.586,L 1.414 0,L 0 1.414,L 5.585 7,L 0 12.586,L 1.414 14,L 7 8.414,L 12.586 14,L 13.999 12.586,L 8.414 7,L 13.999 1.414,L 12.586 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "ignore icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7094C522-3E53-4C18-BE67-288DF46DD599", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore icon\\"", + ], + }, + }, + ], + "name": "ignore", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "73396DAC-D3ED-4453-813C-CD0CFBFF3AFD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"ignore\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "215px", + "position": "absolute", + "top": "116px", + "visibility": "visible", + "width": "88px", + }, + }, + "do_objectID": "931BCD4A-499C-478F-B21F-E6CCF84B359F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E02490EE-A7C7-4F19-8FA8-8A64B7107D16", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B911EBD7-937E-41E1-9D72-BF3BCBFE8979", + "height": 24, + "width": 88, + "x": 215, + "y": 116, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 5, + "location": 0, + }, + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 1, + "location": 5, + }, + ], + "string": "ANSWER", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(0,0,0,0.54)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "16px", + "left": "32px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "1537BD3C-891A-4F61-8F55-BC4CEBEBBD0A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "253396C7-6912-4130-8B5E-53FA21C63323", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "3D3FD027-736C-4804-98F2-6453BC7E7B64", + "height": 16, + "width": 56, + "x": 32, + "y": 4, + }, + "glyphBounds": "{{0, 0}, {56, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ANSWER", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "2AE23441-EE0C-474C-8467-A97D2188B06F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "B879430C-08C6-444C-B016-09E0A51D4739", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.54, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 13, + }, + }, + "kerning": 0.5, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "FF9CC5BE-6308-47C9-A317-26D5ECF79080", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "D9B31BD2-6820-4C94-B456-CC5CC9022565", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "B80CCC63-FDEA-4453-887C-A4C3369FF180", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "AA1A8D6E-C59C-40DB-8B35-0C18964B3177", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "597D1265-E129-4CC7-B8FC-5E17C3A58D6A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": true, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1A3E5BEF-9F3B-44A7-81D8-2D0197FDDEAD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "0F4F4BAF-C422-44C5-8BC0-8F9246E532E6", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7E6A2262-48DB-4167-85B7-1E7251D84923", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Imported Layers", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.024833333333333336, 0}", + "curveMode": 4, + "curveTo": "{0.055555555555555552, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.055555555555555552, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.57711111111111113}", + "curveMode": 3, + "curveTo": "{0, 0.024833333333333287}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.97516666666666674, 1}", + "curveMode": 3, + "curveTo": "{0.42288888888888887, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.94444444444444442}", + "curveMode": 4, + "curveTo": "{1, 0.97516666666666674}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.94444444444444442}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.71933333333333338}", + "curveMode": 4, + "curveTo": "{1, 0.75}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.75}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.87511111111111106, 0.69450000000000001}", + "curveMode": 3, + "curveTo": "{0.97516666666666674, 0.69450000000000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.94444444444444442, 0.69450000000000001}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.74044444444444446, 0.66111111111111109}", + "curveMode": 3, + "curveTo": "{0.80844444444444441, 0.68333333333333324}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.746, 0.66288888888888886}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.71466666666666667, 0.66022222222222227}", + "curveMode": 2, + "curveTo": "{0.7346111111111111, 0.66022222222222227}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.72883333333333333, 0.66022222222222227}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.68961111111111117, 0.67649999999999999}", + "curveMode": 4, + "curveTo": "{0.70044444444444443, 0.66566666666666663}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.68961111111111117, 0.67649999999999999}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.41000000000000003, 0.71888888888888891}", + "curveMode": 4, + "curveTo": "{0.56733333333333336, 0.79888888888888887}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.56733333333333336, 0.79888888888888887}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.20127777777777778, 0.43300000000000005}", + "curveMode": 4, + "curveTo": "{0.28138888888888886, 0.59027777777777779}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.20127777777777778, 0.43300000000000005}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.33877777777777784, 0.29516666666666658}", + "curveMode": 4, + "curveTo": "{0.32350000000000001, 0.31038888888888888}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.32350000000000001, 0.31038888888888888}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.31666666666666671, 0.19149999999999995}", + "curveMode": 3, + "curveTo": "{0.34327777777777779, 0.2732222222222222}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.33711111111111108, 0.25399999999999995}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.30550000000000005, 0.024833333333333287}", + "curveMode": 3, + "curveTo": "{0.30550000000000005, 0.12483333333333332}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.30550000000000005, 0.055555555555555552}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 4, + "curveTo": "{0.28066666666666662, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.25, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "2F5B06DE-A2F3-4D60-9121-74D7B4432C8D", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "do_objectID": "5A587EE4-8725-49D3-B43D-69B2D0ECF699", + "opacity": 0.5399999618530273, + }, + "do_objectID": "FCBE4178-99D1-48E0-AA2B-DAA8552B6B4B", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,0,0,1.00)\\"", + "d=\\"M1 0,S 0 0.447, 0 1,S 7.612 18, 17 18,S 18 17.553, 18 17,S 18 13.5, 18 13.5,S 17.553 12.501, 17 12.501,S 14.552 12.3, 13.428 11.932,S 13.223 11.884, 13.119 11.884,S 12.608 11.982, 12.413 12.177,S 10.212 14.38, 10.212 14.38,S 5.065 10.625, 3.623 7.794,S 5.823 5.587, 5.823 5.587,S 6.179 4.918, 6.068 4.572,S 5.499 2.247, 5.499 1,S 5.052 0, 4.5 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "call icon", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33D04892-40CF-426D-980B-309C1E4A5F13", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"call icon\\"", + ], + }, + }, + ], + "name": "answer", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "7F483D16-C96B-438F-9609-B9CB4F99636E", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"answer\\"", + ], + }, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,0,0,0.26)", + "border-radius": "50%", + "display": "block", + "height": "56px", + "left": "15px", + "position": "absolute", + "top": "16px", + "visibility": "visible", + "width": "56px", + }, + }, + "do_objectID": "22D80829-82E4-4275-92A4-FA77D070C047", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "2C29B384-78D5-439C-800F-45783D68D1AB", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 56, + "width": 56, + "x": 15, + "y": 16, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "B1B72238-D141-487E-ADFB-4162720B325F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.26, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "D882ACD6-8FD5-44B2-941C-DE9F1736A8C8", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.8703294837, + "blue": 0, + "green": 0, + "red": 0, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 16, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 24, + "minimumLineHeight": 24, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"mask\\"", + ], + }, + }, + ], + "name": "heads-up notification", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1ADCCA22-3086-4526-825E-519AC0F6889F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"heads-up notification\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "79F9080C-DFBE-41C5-8884-E66187BAF505": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "A9C33D52-8B9C-4D33-B3A2-119099BA92B4": Object { + "pageListHeight": 110, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-tabs-status-bar.sketch snapshot for 52 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colors": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "52.4", + "autosaved": 0, + "build": 67378, + "commit": "e4f505f4594eb188a22de2c3452fcb4587639e38", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "51.1", + "build": 57501, + "commit": "e5cf8fcadc29a655fd4ba2db99d732034a0d0445", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 105, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.57501", + "NONAPPSTORE.51167", + "NONAPPSTORE.55047", + "NONAPPSTORE.57544", + "NONAPPSTORE.67378", + ], + "variant": "NONAPPSTORE", + "version": 112, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{134, 134}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; + +exports[`WebParserService should match md-components-tabs-status-bar.sketch snapshot for 53 on web 1`] = ` +Object { + "document": Object { + "_class": "document", + "assets": Object { + "_class": "assetCollection", + "colorAssets": Array [], + "colors": Array [], + "gradientAssets": Array [], + "gradients": Array [], + "imageCollection": Object { + "_class": "imageCollection", + "images": Object {}, + }, + "images": Array [], + }, + "colorSpace": 0, + "currentPageIndex": 0, + "do_objectID": "5B57D242-95C3-47E3-BC5E-22376F9F834B", + "foreignLayerStyles": Array [], + "foreignSymbols": Array [], + "foreignTextStyles": Array [], + "layerStyles": Object { + "_class": "sharedStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "name": "Material/Icon white", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + }, + ], + }, + "layerSymbols": Object { + "_class": "symbolContainer", + "objects": Array [], + }, + "layerTextStyles": Object { + "_class": "sharedTextStyleContainer", + "objects": Array [ + Object { + "_class": "sharedStyle", + "do_objectID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "name": "Material/Dark/Title", + "value": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + }, + ], + }, + "pages": Array [ + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "_ref_class": "MSImmutablePage", + }, + Object { + "_class": "MSJSONFileReference", + "_ref": "pages/267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "_ref_class": "MSImmutablePage", + }, + ], + }, + "meta": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "autosaved": 0, + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "created": Object { + "app": "com.bohemiancoding.sketch3", + "appVersion": "53", + "build": 72520, + "commit": "6bf1bb7d02be2c7e63a1a6d1a4e221acacddb3fe", + "compatibilityVersion": 99, + "variant": "NONAPPSTORE", + "version": 116, + }, + "fonts": Array [ + "Roboto-Regular", + "Roboto-Medium", + ], + "pagesAndArtboards": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "artboards": Object { + "85FE2CA3-7BC8-4647-8950-9AB676A1C91A": Object { + "name": "Material/Android/Status bar content", + }, + }, + "name": "Symbols", + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "artboards": Object {}, + "name": "Page 1", + }, + }, + "saveHistory": Array [ + "NONAPPSTORE.72520", + ], + "variant": "NONAPPSTORE", + "version": 116, + }, + "pages": Array [ + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "2145D356-40E2-4569-95CF-84F00DD9818F", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BB51E5D5-5BA5-419F-9D6A-49A171E7ED21", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "7D8CA104-45E8-4835-B4DA-CCAF17E60C45", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "A94FA51A-099C-4CC1-B1AE-4F3CBFE4B381", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "DC89A630-0EF2-4276-944C-D7254BED2EF4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "8C36F8CD-481B-455B-B132-E7E7E477D5D0", + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "128px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "D6E225E7-E0FF-41C3-BF62-95BB15DA2258", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B79BB7B-176C-4CA3-99DC-D5866EA83AB4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 128, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "app bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "ACEE65BC-1CF2-45E4-9889-621210096AED", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.8274509803921568, + "green": 0.7333333333333334, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "7E855B0A-CD99-4BC0-9320-25BCD81DE1B0", + "isEnabled": true, + "offsetX": 0, + "offsetY": 4, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 4, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "do_objectID": "464524C7-C0E7-414E-8B14-DC85D1E28DCE", + "isEnabled": true, + "offsetX": 0, + "offsetY": 0, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(0,187,211,1.00)\\"", + "d=\\"M360 0,L 0 0,L 0 128,L 360 128,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "80px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "DD13F059-6DD2-4413-9C59-5A3ABD7D44D7", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C9CE81BD-C917-48C0-9755-A60CAB214BD0", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D025D61C-6D8C-4DEF-9770-3BF04763FB53", + "height": 48, + "width": 360, + "x": 0, + "y": 80, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.00)", + "box-shadow": "0 0 0 1px rgba(151,151,151,1.00) inset", + "display": "block", + "height": "48px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "B272B09E-BAB6-4010-AE2E-B09CA0800607", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9DD7A316-362F-4C9A-BFF3-5AB347DF1433", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 48, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": true, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "451D43C8-1885-40BE-9887-80738B61DBAA", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 9, + "location": 0, + }, + ], + "string": "THE THIRD", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "240px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "EA8BF223-8245-42D6-AF64-B4A4A529DEBA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "440F05BA-2072-4C6B-B78F-6CDF2E0DA718", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "65C64BBE-7EA8-4BAA-B6F4-933EB86CA11D", + "height": 16, + "width": 120, + "x": 240, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "THE THIRD", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "33A4A266-8DB2-45A7-A7E1-2E46C90421B9", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "4B3B58A2-ADCE-4A57-B0A9-E9F4263044C5", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 8, + "location": 0, + }, + ], + "string": "ITEM TWO", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,0.70)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "120px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "33A046AA-2704-40B5-9DE7-A5F7C8AD52BA", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "14290AE1-FA35-44A1-B010-6330DB239370", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "91542702-E1CB-49DE-AE0B-9145054DB80C", + "height": 16, + "width": 120, + "x": 120, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "ITEM TWO", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "9578BCCE-56FF-4CD0-A6C2-0A67738FF257", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "9140AD60-AC75-4423-BD05-4120E3C53D2A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 0.7, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "length": 7, + "location": 0, + }, + ], + "string": "NO. ONE", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "14px", + "height": "16px", + "left": "0px", + "position": "absolute", + "top": "15px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "2FEE7291-7D60-47B5-AF0C-9794FC70479A", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1C8BB07D-4549-4474-85DE-AAC36D4ED7FE", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "D08C8D43-D4F0-426D-BBE7-5BA4CA030851", + "height": 16, + "width": 120, + "x": 0, + "y": 15, + }, + "glyphBounds": "{{0, 0}, {120, 16}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "NO. ONE", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E1B0E40B-4579-4740-A63F-6C4231A7DCF8", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "07FC4EB1-FE4E-4EFB-8BD3-1562B7D69B89", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 14, + }, + }, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "alignment": 2, + "allowsDefaultTighteningForTruncation": 0, + "maximumLineHeight": 16, + "minimumLineHeight": 16, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,140,1.00)", + "box-shadow": "0px 1px 1.5px 0px rgba(0,0,0,0.12),0px 1px 1px 0px rgba(0,0,0,0.24)", + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "46px", + "visibility": "visible", + "width": "120px", + }, + }, + "do_objectID": "0CD5019F-4477-41F0-B7F4-1437084D2FAD", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "9B2FA7EA-E5FC-4F3F-A38A-91AB190DD24E", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 2, + "width": 120, + "x": 0, + "y": 46, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "indicator", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "A14002AC-97A3-482B-A0C5-D44A77B354E6", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "borders": Array [ + Object { + "_class": "border", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.592, + "green": 0.592, + "red": 0.592, + }, + "fillType": 0, + "isEnabled": false, + "position": 1, + "thickness": 1, + }, + ], + "do_objectID": "87D45A0F-6AC3-4D68-8521-AF6E8F85FD82", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.5490196078431373, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "shadows": Array [ + Object { + "_class": "shadow", + "blurRadius": 1.5, + "color": Object { + "_class": "color", + "alpha": 0.12, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + Object { + "_class": "shadow", + "blurRadius": 1, + "color": Object { + "_class": "color", + "alpha": 0.24, + "blue": 0, + "green": 0, + "red": 0, + }, + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 1, + }, + "isEnabled": false, + "offsetX": 0, + "offsetY": 1, + "spread": 0, + }, + ], + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"indicator\\"", + ], + }, + }, + ], + "name": "tabs", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "56450478-45EE-4020-829D-3D7106A99B8C", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"tabs\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "16px", + "position": "absolute", + "top": "40px", + "visibility": "visible", + "width": "328px", + }, + }, + "do_objectID": "54F2B126-EBC8-42E4-9CCC-6025866EA532", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E919A5D5-7F14-43AB-937D-4AC73AD038A8", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "1244F84B-12C1-420C-A2BD-58EBC9D323FF", + "height": 24, + "width": 328, + "x": 16, + "y": 40, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "316px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "2EAB1189-97C4-4EC1-8CBF-1E24214B7177", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "B5AE9619-0144-403F-B016-9A1F7F494DC5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "13FAD583-AC89-4F3A-A6B6-A0CF3DBA26AC", + "height": 24, + "width": 12, + "x": 316, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": true, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "16px", + "left": "3px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "044E322D-A4FA-476E-8BFB-CB5BD971A007", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "29F06F1B-0927-4D93-BDE8-5828E3184007", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "09DF51C0-DFDA-497B-9205-AB1963FD1154", + "height": 16, + "width": 4, + "x": 3, + "y": 4, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "12px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "3B936567-EF75-4459-8908-92C1DA27C1FE", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "F1F98697-0674-4D9C-A0F6-B7D2C30462F5", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C0EAD72B-E995-4B23-A15E-81E3ACD60B80", + "height": 4, + "width": 4, + "x": 0, + "y": 12, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 2, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "5F4D6AE3-A563-4C5E-86C0-66332A65E9B1", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "0BEF50BC-CCDF-4CDB-BEEE-4CB4FB2CE90D", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2CF02168-028C-4296-82F3-C32431ED0BEA", + "height": 4, + "width": 4, + "x": 0, + "y": 6, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22500000000000009}", + "curveMode": 2, + "curveTo": "{0, 0.77499999999999991}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77499999999999991}", + "curveMode": 2, + "curveTo": "{1, 0.22500000000000009}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "4px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "BD1D4A8E-E7B8-496D-AA91-E4278ED2DE16", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "E4AC1434-7A30-45CD-8976-A852E84BBF9A", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "313C2770-48E7-45CF-AD51-6CE335D14FEE", + "height": 4, + "width": 4, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22500000000000009, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999964}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000036}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999991, 0}", + "curveMode": 2, + "curveTo": "{0.22500000000000009, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000036}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999964}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77499999999999991, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M2 4,S 0 3.1, 0 2,S 0.9 0, 2 0,S 4 0.9, 4 2,S 3.1 4, 2 4,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "FB45A7ED-B988-437C-840D-EA6B18CBF5A8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E4792B29-BF0E-42DB-95C8-4DDBCAC7798F", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "8B85D384-7961-4B39-87B7-A05B22F94D02", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Shape", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "946562AE-3059-44F0-8DC3-54BE98B4ACFC", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 0,L 0 0,L 0 24,L 12 24,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "more", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "06EE712E-EDFF-4466-B1D7-A63C20D4C50F", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"more\\"", + ], + }, + }, + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 10, + "location": 0, + }, + ], + "string": "Page Title", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "rgba(255,255,255,1.00)", + "display": "block", + "font-family": "'Roboto-Medium', 'Roboto', 'sans-serif'", + "font-size": "20px", + "height": "26px", + "left": "56px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "91px", + }, + }, + "do_objectID": "90E271D7-D279-45F2-95DC-47441AC6F11F", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "BBB1B522-64CF-4563-B8E9-F138ED2B426C", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 26, + "width": 91, + "x": 56, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {90, 24}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "Page Title", + "nameIsFixed": false, + "resizingConstraint": 47, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "FD154772-5D9F-4899-88F9-5124F223C73E", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "E2DF08D7-CE0B-4A04-A46E-02C8D9DC19DD", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "do_objectID": "E92BA203-2A38-4841-BE87-23D9A757DC8A", + "encodedAttributes": Object { + "MSAttributedStringColorAttribute": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Medium", + "size": 20, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 0, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "A7B39194-67E6-4391-84D0-3590B6A9C8C6", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "C4FDFF6F-90CA-42E5-B4EA-02196E788C67", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "C1D0BFE2-05CA-4895-8105-DEBC39E206B0", + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "798D3C77-B6E0-4D8D-9EF6-ABDC9A4C8B2D", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1D1A9FCF-0DAD-4917-B2EA-6CC0D24671C4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "31EF773D-8AEB-4113-BED9-1CB4C1CC4417", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "894DE14D-3249-43A6-A9E5-13D74A715EAF", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "5E9A3EF6-B3AB-4018-A46A-4C09A1B6E2EC", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "A14A0CC3-5811-4C0B-AB5D-66BABB31C092", + "height": 12, + "width": 18, + "x": 3, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "02902742-F6CF-47B2-A5EC-DD22510DA7DD", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "A8D67E3B-9CAB-4149-B260-2B85A40190E9", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "59305F95-A91C-43CD-BBC5-08B12D2CFEBD", + "height": 2, + "width": 18, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "D6BB75D0-AB30-43EC-B104-7BF224DA30B9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "3E227245-30B1-4F5B-B4D2-B2EC3199D671", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "2178831E-0EA9-4B03-B0B6-05303ABBB4B7", + "height": 2, + "width": 18, + "x": 0, + "y": 5, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 2,L 18 2,L 18 0,L 0 0,L 0 2,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "2px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "C6B5B3A2-5CA0-4787-A6F1-47DAFF9CCAB9", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "574554BD-6E97-4715-BD86-7A3FEC2A86BF", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "4B258FC6-50FA-406A-AFD3-A641D2D0E332", + "height": 2, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,1.00)\\"", + "d=\\"M0 0,L 0 2,L 18 2,L 18 0,L 0 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "sharedStyleID": "05162022-416A-4D3D-AB6D-697C9AF39F7C", + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "621805EE-0807-4DB8-AE0B-2B9F4D3D2EE8", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + ], + "name": "menu", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "0E6232B9-D813-4EF6-86CD-A008760CB052", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"menu\\"", + ], + }, + }, + ], + "name": "app bar contents", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "CEB14821-8174-404A-B9B3-70B0D89FF07A", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar contents\\"", + ], + }, + }, + ], + "name": "app bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "6D2C6775-C00E-459D-BF35-6BF75842EAB0", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "FA4CA9F5-471E-4E2A-9466-D3AE5C74D5E9", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "CAF63BAA-809D-4491-BA10-6E6BE6B675F4", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "096F6677-3466-4D31-8976-C5099741CC33", + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(0,150,166,1.00)", + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "360px", + }, + }, + "do_objectID": "C27B6B4D-AE72-45DB-A433-BCF83BD5FA33", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "7FF88E2C-E6A4-45D7-A3B0-7D665AB5D111", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 360, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar bg", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "5C253197-535A-49C9-85CC-3D1E6ECC5E36", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0.6509803921568628, + "green": 0.5882352941176472, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"status bar bg\\"", + ], + }, + }, + Object { + "_class": "symbolInstance", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "2897CFF8-D7D1-4C1F-B13C-E4DAE67067FA", + "exportOptions": Object { + "_class": "exportOptions", + "do_objectID": "1E5FD2ED-1738-4855-A83E-3E2986B601A2", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "do_objectID": "139BCC43-36EB-444E-A4E6-44A1B5DA3103", + "height": 24, + "width": 118, + "x": 242, + "y": 0, + }, + "hasClippingMask": false, + "horizontalSpacing": 0, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": true, + "isVisible": true, + "layerListExpandedType": 0, + "name": "status bar contents", + "nameIsFixed": false, + "overrideValues": Array [], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "scale": 1, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "4FFF4E6F-61BA-4E30-B769-FC2F51E39F2F", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalSpacing": 0, + }, + ], + "name": "status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "1804FEE3-D722-4D5E-BD63-2DF8F2DB5FD5", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"status bar\\"", + ], + }, + }, + ], + "name": "app bar + status bar", + "nameIsFixed": true, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "do_objectID": "807C67B1-1EBA-45A7-AAA4-BF807BDF4729", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"app bar + status bar\\"", + ], + }, + }, + ], + "name": "Page 1", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + Object { + "_class": "page", + "booleanOperation": 0, + "clippingMaskMode": 0, + "do_objectID": "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 300, + "width": 300, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "symbolMaster", + "backgroundColor": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "booleanOperation": 0, + "changeIdentifier": 6, + "clippingMaskMode": 0, + "do_objectID": "85FE2CA3-7BC8-4647-8950-9AB676A1C91A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasBackgroundColor": false, + "hasClickThrough": true, + "hasClippingMask": false, + "horizontalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "includeBackgroundColorInExport": true, + "includeBackgroundColorInInstance": false, + "includeInCloudUpload": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isFlowHome": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "118px", + }, + }, + "do_objectID": "61B8B31F-4531-4223-B67B-9F81955A0731", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 118, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "bounds", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"bounds\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "8px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 8, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.70530256582424e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "16px", + }, + }, + "do_objectID": "48C609B3-F9AE-422F-8D11-F6812E58FE3A", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 16, + "x": 1.70530256582424e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "wifi mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.49999999999999828, 1}", + "curveMode": 1, + "curveTo": "{0.49999999999999828, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.49999999999999828, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M0 0,L 8 12,L 16 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "-4.000000000000114px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "287233C0-7413-448D-82F6-AC1AD74EDE8C", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": -4.000000000000114, + "y": 0, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "24px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "24px", + }, + }, + "do_objectID": "CC5B3585-0E1B-45E9-BF72-0B8BCB2EA440", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 24, + "width": 24, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.7749999999999998}", + "curveMode": 2, + "curveTo": "{0, 0.22500000000000023}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77500000000000091, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22500000000000023}", + "curveMode": 2, + "curveTo": "{1, 0.7749999999999998}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000091, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M12 0,S 0 5.4, 0 12,S 5.4 24, 12 24,S 24 18.6, 24 12,S 18.6 0, 12 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "CD540E6A-760E-4F36-8DB5-F793A9F1A479", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{0, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 0}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{1, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.30)\\"", + "d=\\"M9 18,S 0 14, 0 9,S 4 0, 9 0,S 18 4, 18 9,S 14 18, 9 18,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "-1.000000000000114px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "99CA80EA-99CB-4F9D-AE59-61E715C9D579", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": -1.000000000000114, + "y": 3, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "18px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "18px", + }, + }, + "do_objectID": "3B0F2CD9-E800-48D8-8695-71CEE8180B3C", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 18, + "width": 18, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22222222222222221, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77777777777777779}", + "curveMode": 2, + "curveTo": "{0, 0.22222222222222221}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77777777777777779, 1}", + "curveMode": 2, + "curveTo": "{0.22222222222222221, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22222222222222221}", + "curveMode": 2, + "curveTo": "{1, 0.77777777777777779}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77777777777777779, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M9 0,S 0 4, 0 9,S 4 18, 9 18,S 18 14, 18 9,S 14 0, 9 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "B479B32B-CF71-44A5-AF7E-EEA917A2D816", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{0, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 0}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{1, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 12,S 0 9.3, 0 6,S 2.7 0, 6 0,S 12 2.7, 12 6,S 9.3 12, 6 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "shapeGroup", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "1.999999999999886px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "17E4F2B4-96B0-411A-88F6-61FDC86B6DDE", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 1.999999999999886, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "EE70DE52-A724-4E3D-A42F-CE005CC6DEE5", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22499999999999906, 0}", + "curveMode": 4, + "curveTo": "{0.5, 0}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77500000000000091}", + "curveMode": 2, + "curveTo": "{0, 0.22499999999999906}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77499999999999625, 1}", + "curveMode": 2, + "curveTo": "{0.22499999999999906, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22499999999999906}", + "curveMode": 2, + "curveTo": "{1, 0.77500000000000091}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 0}", + "curveMode": 4, + "curveTo": "{0.77500000000000568, 0}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M6 0,S 0 2.7, 0 6,S 2.7 12, 6 12,S 12 9.3, 12 6,S 9.3 0, 6 0,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "6px", + "left": "3px", + "position": "absolute", + "top": "3px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "BD7374FA-0B5C-49B4-9D33-6515AAA9219E", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 3, + "y": 3, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.21666666666666856, 1}", + "curveMode": 4, + "curveTo": "{0.5, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.21666666666666856}", + "curveMode": 2, + "curveTo": "{0, 0.78333333333333144}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.78333333333334088, 0}", + "curveMode": 2, + "curveTo": "{0.21666666666666856, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.78333333333333144}", + "curveMode": 2, + "curveTo": "{1, 0.21666666666666856}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.5, 1}", + "curveMode": 4, + "curveTo": "{0.78333333333334088, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"rgba(255,255,255,0.90)\\"", + "d=\\"M3 6,S 0 4.7, 0 3,S 1.3 0, 3 0,S 6 1.3, 6 3,S 4.7 6, 3 6,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "Shape", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"shapeGroup\\"", + "aria-label=\\"Shape\\"", + ], + }, + "windingRule": 1, + }, + Object { + "_class": "oval", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "border-radius": "50%", + "display": "block", + "height": "6px", + "left": "5px", + "position": "absolute", + "top": "9px", + "visibility": "visible", + "width": "6px", + }, + }, + "do_objectID": "D27B5981-CCA7-4D15-BDB6-1307F55D4185", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 6, + "width": 6, + "x": 5, + "y": 9, + }, + "hasClippingMask": false, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Oval", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.77614237490000004, 1}", + "curveMode": 2, + "curveTo": "{0.22385762510000001, 1}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.22385762510000001}", + "curveMode": 2, + "curveTo": "{1, 0.77614237490000004}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{1, 0.5}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.22385762510000001, 0}", + "curveMode": 2, + "curveTo": "{0.77614237490000004, 0}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0.5, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.77614237490000004}", + "curveMode": 2, + "curveTo": "{0, 0.22385762510000001}", + "hasCurveFrom": true, + "hasCurveTo": true, + "point": "{0, 0.5}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"oval\\"", + "aria-label=\\"Oval\\"", + ], + }, + }, + ], + "name": "wifi", + "nameIsFixed": true, + "originalObjectID": "0F7636EC-3486-4CC5-99A9-684896927622", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"wifi\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "34px", + "position": "absolute", + "top": "6px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": 34, + "y": 6, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "12px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "12px", + }, + }, + "do_objectID": "40BA2EEC-83D4-453D-8478-4F0193497A23", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 12, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "reception mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M12 12,L 12 0,L 0 12,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "9px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "D0C86B5E-4173-4729-A3AF-88C232B22652", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 9, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "12px", + "left": "6px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "EF62075C-CD4D-4710-991E-3FCE6FB02448", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 6, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "3px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "8639EA38-59EA-4C41-AC59-E235A01C9985", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 3, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "12px", + "left": "0px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "3px", + }, + }, + "do_objectID": "03D57E4D-0423-45FE-BCB7-7B3DF1A5B1A8", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 12, + "width": 3, + "x": 0, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "reception", + "nameIsFixed": true, + "originalObjectID": "E3D79703-0A3F-4793-8B32-D2D80B1B7B8A", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"reception\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "60px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": 60, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "shapePath", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "13px", + "left": "-1.13686837721616e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "36B2AC85-DF12-4169-8718-5F3D3C549F84", + "edited": true, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 13, + "width": 8, + "x": -1.13686837721616e-13, + "y": 0, + }, + "hasClippingMask": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "battery mask", + "nameIsFixed": true, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.875, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.875, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.75, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.75, 0}", + "curveMode": 1, + "curveTo": "{0.75, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.75, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0}", + "curveMode": 1, + "curveTo": "{0.25, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.25, 0.076923076923076927}", + "curveMode": 1, + "curveTo": "{0.25, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0.25, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.049999999999997158, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.125, 0.076923076923076927}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.125, 0.076923076923076927}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.15384615384615385}", + "curveMode": 4, + "curveTo": "{0, 0.10769230769230813}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0.96923076923076878}", + "curveMode": 4, + "curveTo": "{0, 0.92307692307692313}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.125, 1}", + "curveMode": 4, + "curveTo": "{0.049999999999997158, 1}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.125, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.95000000000000284, 1}", + "curveMode": 4, + "curveTo": "{0.875, 1}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{0.875, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.92307692307692313}", + "curveMode": 4, + "curveTo": "{1, 0.96923076923076878}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{1, 0.92307692307692313}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0.10769230769230813}", + "curveMode": 4, + "curveTo": "{1, 0.15384615384615385}", + "hasCurveFrom": true, + "hasCurveTo": false, + "point": "{1, 0.15384615384615385}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0.875, 0.076923076923076927}", + "curveMode": 4, + "curveTo": "{0.95000000000000284, 0.076923076923076927}", + "hasCurveFrom": false, + "hasCurveTo": true, + "point": "{0.875, 0.076923076923076927}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "svg": Object { + "offset": 0, + "paths": Array [ + Object { + "attributes": Array [ + "fill=\\"none\\"", + "d=\\"M7 1,L 6 1,L 6 0,L 2 0,L 2 1,S 1 1, 1 1,S 0 1.4, 0 2,S 0 12, 0 12,S 0.4 13, 1 13,S 7 13, 7 13,S 8 12.6, 8 12,S 8 2, 8 2,S 7.6 1, 7 1,z\\"", + ], + "type": "path", + }, + ], + }, + "web": Object { + "attributes": Array [], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "10px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "50A264EB-01E5-4A89-91A4-6BC7B6F43B82", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 10, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.90)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "7px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "104A5BDF-320D-45A2-9EFB-DA0F9A056E07", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 7, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.9, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "4px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "4162C6FB-40B4-4940-AF52-911CB4C18D05", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 4, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "3px", + "left": "0px", + "position": "absolute", + "top": "1px", + "visibility": "visible", + "width": "8px", + }, + }, + "do_objectID": "7EEACE8D-CEA3-4118-BA2B-20DA6BB9C643", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 3, + "width": 8, + "x": 0, + "y": 1, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + Object { + "_class": "rectangle", + "booleanOperation": -1, + "clippingMaskMode": 0, + "css": Object { + "pseudoElements": Object { + "before": Object {}, + }, + "rules": Object { + "background-color": "rgba(255,255,255,0.30)", + "display": "block", + "height": "1px", + "left": "2px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "4px", + }, + }, + "do_objectID": "B5950202-1A67-4112-84B9-936E5A627174", + "edited": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "fixedRadius": 0, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 1, + "width": 4, + "x": 2, + "y": 0, + }, + "hasClippingMask": false, + "hasConvertedToNewRoundCorners": true, + "isClosed": true, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "name": "Rectangle-path", + "nameIsFixed": false, + "pointRadiusBehaviour": 0, + "points": Array [ + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 0}", + "curveMode": 1, + "curveTo": "{0, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 0}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{0, 1}", + "curveMode": 1, + "curveTo": "{0, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{0, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 1}", + "curveMode": 1, + "curveTo": "{1, 1}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 1}", + }, + Object { + "_class": "curvePoint", + "cornerRadius": 0, + "curveFrom": "{1, 0}", + "curveMode": 1, + "curveTo": "{1, 0}", + "hasCurveFrom": false, + "hasCurveTo": false, + "point": "{1, 0}", + }, + ], + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 0.3, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"rectangle\\"", + "aria-label=\\"Rectangle-path\\"", + ], + }, + }, + ], + "name": "battery", + "nameIsFixed": true, + "originalObjectID": "394BBD24-BE18-4203-8A03-D37C48937738", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"battery\\"", + ], + }, + }, + Object { + "_class": "group", + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "display": "block", + "height": "15px", + "left": "77px", + "position": "absolute", + "top": "5px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 77, + "y": 5, + }, + "groupLayout": Object { + "_class": "MSImmutableFreeformGroupLayout", + }, + "hasClickThrough": false, + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "layers": Array [ + Object { + "_class": "text", + "attributedString": Object { + "_class": "attributedString", + "attributes": Array [ + Object { + "_class": "stringAttribute", + "attributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "length": 5, + "location": 0, + }, + ], + "string": "12:30", + }, + "automaticallyDrawOnUnderlyingPath": false, + "booleanOperation": 0, + "clippingMaskMode": 0, + "css": Object { + "rules": Object { + "color": "black", + "display": "block", + "font-family": "'Roboto-Regular', 'Roboto', 'sans-serif'", + "font-size": "13px", + "height": "15px", + "left": "2.273736754432321e-13px", + "position": "absolute", + "top": "0px", + "visibility": "visible", + "width": "33px", + }, + }, + "do_objectID": "180DADB8-0C0B-40BD-A964-08340D4A7861", + "dontSynchroniseWithSymbol": false, + "exportOptions": Object { + "_class": "exportOptions", + "exportFormats": Array [], + "includedLayerIds": Array [], + "layerOptions": 0, + "shouldTrim": false, + }, + "frame": Object { + "_class": "rect", + "constrainProportions": false, + "height": 15, + "width": 33, + "x": 2.273736754432321e-13, + "y": 0, + }, + "glyphBounds": "{{0, 0}, {33, 15}}", + "hasClippingMask": false, + "isFixedToViewport": false, + "isFlippedHorizontal": false, + "isFlippedVertical": false, + "isLocked": false, + "isVisible": true, + "layerListExpandedType": 0, + "lineSpacingBehaviour": 0, + "name": "12:30", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 1, + "green": 1, + "red": 1, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "textStyle": Object { + "_class": "textStyle", + "encodedAttributes": Object { + "MSAttributedStringFontAttribute": Object { + "_class": "fontDescriptor", + "attributes": Object { + "name": "Roboto-Regular", + "size": 13, + }, + }, + "ligature": 0, + "paragraphStyle": Object { + "_class": "paragraphStyle", + "allowsDefaultTighteningForTruncation": 0, + }, + }, + "verticalAlignment": 0, + }, + "windingRule": 1, + }, + "textBehaviour": 1, + "web": Object { + "attributes": Array [], + }, + }, + ], + "name": "time", + "nameIsFixed": true, + "originalObjectID": "07EA6ABD-426B-469E-85BA-0D2542F1EB5B", + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "contextSettings": Object { + "_class": "graphicsContextSettings", + "blendMode": 0, + "opacity": 0.9, + }, + "endMarkerType": 0, + "fills": Array [ + Object { + "_class": "fill", + "color": Object { + "_class": "color", + "alpha": 1, + "blue": 0, + "green": 0, + "red": 0, + }, + "fillType": 0, + "isEnabled": true, + "noiseIndex": 0, + "noiseIntensity": 0, + "patternFillType": 0, + "patternTileScale": 1, + }, + ], + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "web": Object { + "attributes": Array [ + "role=\\"group\\"", + "aria-label=\\"time\\"", + ], + }, + }, + ], + "name": "Material/Android/Status bar content", + "nameIsFixed": false, + "overrideProperties": Array [ + Object { + "_class": "MSImmutableOverrideProperty", + "canOverride": true, + "overrideName": "180DADB8-0C0B-40BD-A964-08340D4A7861_stringValue", + }, + ], + "resizesContent": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": true, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "symbolID": "080C0EF9-47BD-4900-BB91-42C80173D424", + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + "web": Object { + "attributes": Array [ + "role=\\"symbolMaster\\"", + "aria-label=\\"Material/Android/Status bar content\\"", + ], + }, + }, + ], + "name": "Symbols", + "nameIsFixed": false, + "resizingConstraint": 63, + "resizingType": 0, + "rotation": 0, + "shouldBreakMaskChain": false, + "style": Object { + "_class": "style", + "endMarkerType": 0, + "miterLimit": 10, + "startMarkerType": 0, + "windingRule": 1, + }, + "verticalRulerData": Object { + "_class": "rulerData", + "base": 0, + "guides": Array [], + }, + }, + ], + "previews": Array [], + "user": Object { + "267D6DEC-0F7B-4667-BA1A-1FA1BCA04485": Object { + "scrollOrigin": "{-60, 40}", + "zoomValue": 1, + }, + "5B57D242-95C3-47E3-BC5E-22376F9F834B": Object { + "pageListHeight": 110, + }, + "F88D7516-E1DF-48A7-BA35-A0F4EF393BBE": Object { + "scrollOrigin": "{160, 160}", + "zoomValue": 1, + }, + "document": Object { + "pageListCollapsed": 1, + "pageListHeight": -1, + }, + }, +} +`; diff --git a/projects/web-codegen/src/lib/web-aggregator.service.spec.ts b/projects/web-codegen/src/lib/web-aggregator.service.spec.ts new file mode 100644 index 000000000..13018f2c3 --- /dev/null +++ b/projects/web-codegen/src/lib/web-aggregator.service.spec.ts @@ -0,0 +1,63 @@ +import { TestBed } from '@angular/core/testing'; +import { WebAggregatorService } from './web-aggregator.service'; +describe('WebAggregatorService', () => { + let service: WebAggregatorService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebAggregatorService] + }); + + service = TestBed.get(WebAggregatorService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should have three files for a basic component', () => { + const data = { + '_class': 'rectangle', + 'name': 'abc', + 'web': { + }, + + layers: [ + { + '_class': 'text', + 'css': { + 'className': 'aclass', + rules: { + 'width': '20px' + } + }, + 'web': { + + }, + attributedString: { string: 'attr' } + } + ] + } as any; + const aggregated = service.aggregate(data, { + textTagName: 'span', + bitmapTagName: 'img', + blockTagName: 'div', + xmlPrefix: 'xly-', + cssPrefix: 'xly_', + componentDir: 'components', + assetDir: 'assets', + }); + + expect(aggregated.length).toEqual(2); + + const [html, css] = aggregated; + expect(html.kind).toEqual('web'); + expect(html.language).toEqual('html'); + expect(html.value.indexOf('attr') >= 0).toBeTruthy(); + expect(html.uri).toEqual('components/abc.html'); + expect(css.kind).toEqual('web'); + expect(css.uri).toEqual('components/abc.css'); + expect(css.language).toEqual('css'); + expect(css.value.indexOf(`.aclass`) >= 0).toEqual(true); + }); +}); diff --git a/projects/web-codegen/src/lib/web-codegen.service.spec.ts b/projects/web-codegen/src/lib/web-codegen.service.spec.ts new file mode 100644 index 000000000..bb9dc5401 --- /dev/null +++ b/projects/web-codegen/src/lib/web-codegen.service.spec.ts @@ -0,0 +1,69 @@ +import { TestBed } from '@angular/core/testing'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; +import { WebCodeGenService } from './web-codegen.service'; + +describe('WebCodeGenService', () => { + let service: WebCodeGenService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebCodeGenService] + }); + + service = TestBed.get(WebCodeGenService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should identify a valid class', () => { + const data = { + '_class': 'bitmap' + } as any; + const actual = service.identify(data); + expect(actual).toBe(true); + }); + + it('should not identify a invalid class', () => { + const data = { + '_class': 'random' + } as any; + const actual = service.identify(data); + expect(actual).toBe(false); + }); + + it('should provide a context', () => { + const data = { + 'web': 'a_context', + '_class': 'random' + } as any; + const actual = service.context(data); + expect(actual).toBe('a_context'); + }); + + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on web`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); diff --git a/projects/web-codegen/src/lib/web-context.service.spec.ts b/projects/web-codegen/src/lib/web-context.service.spec.ts new file mode 100644 index 000000000..d785e3cac --- /dev/null +++ b/projects/web-codegen/src/lib/web-context.service.spec.ts @@ -0,0 +1,73 @@ +import { TestBed } from '@angular/core/testing'; +import { WebContextService } from './web-context.service'; + +describe('WebContextService', () => { + let service: WebContextService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebContextService] + }); + + service = TestBed.get(WebContextService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + + it('should idenitfy a variaty of classes', () => { + [ + 'triangle', + 'shapePath', + ].forEach(item => { + const data = { + _class: item + } as any; + + const identify = service.identify(data); + expect(identify).toBeTruthy(); + }); + }); + + + it('should provide context', () => { + const data = { + _class: 'name', + web: { + attr: 'random' + } + } as any; + expect(service.of(data)).toEqual({ attr: 'random' }); + }); + + it('should add add new options', () => { + const data = { + _class: 'name', + web: { + attr: 'random' + } + } as any; + service.put(data, { attributes: [] }); + + expect(service.of(data)).toEqual({ + 'attr': 'random', + 'attributes': [], + }); + }); + it('should clear the web attributes', () => { + const data = { + _class: 'name', + web: { + attr: 'random' + } + } as any; + const expected_data = { + _class: 'name', + } as any; + + service.clear(data); + + expect(expected_data).toEqual(data); + }); +}); diff --git a/projects/web-codegen/src/lib/web-parser.service.spec.ts b/projects/web-codegen/src/lib/web-parser.service.spec.ts new file mode 100644 index 000000000..dbc14dfc7 --- /dev/null +++ b/projects/web-codegen/src/lib/web-parser.service.spec.ts @@ -0,0 +1,43 @@ +import { TestBed } from '@angular/core/testing'; +import { WebParserService } from './web-parser.service'; +import { VERSION_LIST, SKETCH_PATH, loadSketch } from '../../../../tests/test-utils'; +import { readdirSync } from 'fs'; + +describe('WebParserService', () => { + let service: WebParserService; + + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [WebParserService] + }); + + service = TestBed.get(WebParserService); + }); + + it('should create', () => { + expect(service).toBeTruthy(); + }); + VERSION_LIST.forEach(version => { + const fileNames = readdirSync(`${SKETCH_PATH}/${version}`); + + fileNames.forEach(fileName => { + it(`should match ${fileName} snapshot for ${version} on web`, done => { + loadSketch(version, fileName) + .then(data => { + data.pages.forEach(page => { + service.compute(page, data, { + generateClassName: false + }); + }); + + return data; + }) + .then(sketch => { + expect(sketch).toMatchSnapshot(); + done(); + }) + .catch(done); + }); + }); + }); +}); From ac7dde48a122fd2ed630f64ccc2e84dce9161f83 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Thu, 28 Nov 2019 14:09:11 +0100 Subject: [PATCH 16/17] chore: fixes around merge --- .../angular-codegen/src/lib/angular-aggregator.service.spec.ts | 2 +- .../src/lib/lit-element-aggregator.service.spec.ts | 2 +- projects/react-codegen/src/lib/react-aggregator.service.spec.ts | 2 +- .../stencil-codegen/src/lib/stencil-aggregator.service.spec.ts | 2 +- .../src/lib/web-component-aggregator.service.spec.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts b/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts index 1c1135e8d..52f86ae4a 100644 --- a/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts +++ b/projects/angular-codegen/src/lib/angular-aggregator.service.spec.ts @@ -39,7 +39,7 @@ describe('AngularAggregatorService', () => { } ] } as any; - const aggregated = service.aggregate(data, { + const aggregated = service.aggregate(data, data, { textTagName: 'span', bitmapTagName: 'img', blockTagName: 'div', diff --git a/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts b/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts index 98e1d6d33..7bcd0622a 100644 --- a/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts +++ b/projects/lit-element-codegen/src/lib/lit-element-aggregator.service.spec.ts @@ -39,7 +39,7 @@ describe('ReactCodeGenService', () => { } ] } as any; - const aggregated = service.aggregate(data, { + const aggregated = service.aggregate(data, data, { textTagName: 'span', bitmapTagName: 'img', blockTagName: 'div', diff --git a/projects/react-codegen/src/lib/react-aggregator.service.spec.ts b/projects/react-codegen/src/lib/react-aggregator.service.spec.ts index 8064ab277..089f50dc3 100644 --- a/projects/react-codegen/src/lib/react-aggregator.service.spec.ts +++ b/projects/react-codegen/src/lib/react-aggregator.service.spec.ts @@ -39,7 +39,7 @@ describe('ReactCodeGenService', () => { } ] } as any; - const aggregated = service.aggregate(data, { + const aggregated = service.aggregate(data, data, { textTagName: 'span', bitmapTagName: 'img', blockTagName: 'div', diff --git a/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts b/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts index 4a28181fb..54992167a 100644 --- a/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts +++ b/projects/stencil-codegen/src/lib/stencil-aggregator.service.spec.ts @@ -39,7 +39,7 @@ describe('StencilAggregatorService', () => { } ] } as any; - const aggregated = service.aggregate(data, { + const aggregated = service.aggregate(data, data, { textTagName: 'span', bitmapTagName: 'img', blockTagName: 'div', diff --git a/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts b/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts index 18a2257df..706eedcbd 100644 --- a/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts +++ b/projects/web-component-codegen/src/lib/web-component-aggregator.service.spec.ts @@ -39,7 +39,7 @@ describe('WebComponentAggregatorService', () => { } ] } as any; - const aggregated = service.aggregate(data, { + const aggregated = service.aggregate(data, data, { textTagName: 'span', bitmapTagName: 'img', blockTagName: 'div', From 8991649ef54492bf786ca4b6fd00a9b480e62036 Mon Sep 17 00:00:00 2001 From: Jeffrey Bosch Date: Thu, 28 Nov 2019 16:22:30 +0100 Subject: [PATCH 17/17] chore: fixes the errors around symbols: --- package-lock.json | 1599 +++++++++++++---- package.json | 3 +- .../src/lib/web-aggregator.service.ts | 19 +- 3 files changed, 1275 insertions(+), 346 deletions(-) diff --git a/package-lock.json b/package-lock.json index 97f3ec4ca..1825edc37 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,6 +8,7 @@ "version": "0.803.12", "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.12.tgz", "integrity": "sha512-BUYnXz0btv0kJ4xfQOGd8yMaNkgv8PPyZl0EfuH5LJ0OC94gNrPuLvKQC14aIan19T8Z36R6sErPl7umLgWJDQ==", + "dev": true, "requires": { "@angular-devkit/core": "8.3.12", "rxjs": "6.4.0" @@ -17,6 +18,7 @@ "version": "6.4.0", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -27,6 +29,7 @@ "version": "0.803.12", "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-0.803.12.tgz", "integrity": "sha512-6Mj468HMSymbS6a1cLy47vhOnQioWfzIQCM+kq0SQxTKOWNiT+xPL3bTGqnAxAOMESrvsJ3ZJm/sw4WDonT6PA==", + "dev": true, "requires": { "@angular-devkit/architect": "0.803.12", "@angular-devkit/build-optimizer": "0.803.12", @@ -90,6 +93,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "dev": true, "requires": { "@babel/highlight": "^7.0.0" } @@ -98,6 +102,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz", "integrity": "sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==", + "dev": true, "requires": { "@babel/code-frame": "^7.5.5", "@babel/generator": "^7.5.5", @@ -118,12 +123,14 @@ "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true } } }, @@ -131,6 +138,7 @@ "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", + "dev": true, "requires": { "@babel/types": "^7.6.3", "jsesc": "^2.5.1", @@ -141,7 +149,8 @@ "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true } } }, @@ -149,6 +158,7 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz", "integrity": "sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==", + "dev": true, "requires": { "@babel/template": "^7.6.0", "@babel/traverse": "^7.6.2", @@ -159,6 +169,7 @@ "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", + "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/parser": "^7.6.0", @@ -170,12 +181,14 @@ "@babel/parser": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", + "dev": true }, "@babel/traverse": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", + "dev": true, "requires": { "@babel/code-frame": "^7.5.5", "@babel/generator": "^7.6.3", @@ -192,6 +205,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -202,6 +216,7 @@ "version": "6.10.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -213,6 +228,7 @@ "version": "9.6.1", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.6.1.tgz", "integrity": "sha512-aVo5WxR3VyvyJxcJC3h4FKfwCQvQWb1tSI5VHNibddCVWrcD1NvlxEweg3TSgiPztMnWfjpy2FURKA2kvDE+Tw==", + "dev": true, "requires": { "browserslist": "^4.6.3", "caniuse-lite": "^1.0.30000980", @@ -226,17 +242,20 @@ "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true }, "core-js": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.2.1.tgz", - "integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==" + "integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==", + "dev": true }, "debug": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -245,6 +264,7 @@ "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -258,6 +278,7 @@ "version": "24.9.0", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dev": true, "requires": { "merge-stream": "^2.0.0", "supports-color": "^6.1.0" @@ -267,6 +288,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz", "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==", + "dev": true, "requires": { "minimist": "^1.2.0" } @@ -274,17 +296,20 @@ "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, "regenerator-runtime": { "version": "0.13.3", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", - "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==" + "integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==", + "dev": true }, "rxjs": { "version": "6.4.0", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -292,12 +317,14 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true }, "source-map-support": { "version": "0.5.13", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -306,7 +333,8 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true } } }, @@ -314,6 +342,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -322,6 +351,7 @@ "version": "4.3.8", "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.8.tgz", "integrity": "sha512-otmIRlRVmLChAWsnSFNO0Bfk6YySuBp6G9qrHiJwlLDd4mxe2ta4sjI7TzIR+W1nBMjilzrMcPOz9pSusgx3hQ==", + "dev": true, "requires": { "commander": "^2.20.0", "source-map": "~0.6.1", @@ -331,7 +361,8 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true } } } @@ -362,6 +393,7 @@ "version": "0.803.12", "resolved": "https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.803.12.tgz", "integrity": "sha512-mFbGECdK+oCKbSaVRZBMLrfvXAN5GyPLcbl9RnSwm0ypLJPon7Jm56BGlv5nmOeh254AlwRIP2kV7vJWT3/vkg==", + "dev": true, "requires": { "loader-utils": "1.2.3", "source-map": "0.7.3", @@ -373,7 +405,8 @@ "typescript": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.3.tgz", - "integrity": "sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==" + "integrity": "sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==", + "dev": true } } }, @@ -381,6 +414,7 @@ "version": "0.803.12", "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.803.12.tgz", "integrity": "sha512-wl1Hs3s+6ntABSdqy6eLMx7WP9myAqTJISCXiwfCt5xxiaqrJ8HO9mIf4XA0y42r9JksxMUdzQuKv/iNDSuDFw==", + "dev": true, "requires": { "@angular-devkit/architect": "0.803.12", "@angular-devkit/core": "8.3.12", @@ -391,6 +425,7 @@ "version": "6.4.0", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -401,6 +436,7 @@ "version": "8.3.12", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.12.tgz", "integrity": "sha512-zqhhpdy4jfanxSUssTxkZAUIfpQV9G/CG+dvdqvBeQK0nppcH8a+8pIB91v8KjIbGErH1y3YXiYjAIsWwJd7RQ==", + "dev": true, "requires": { "ajv": "6.10.2", "fast-json-stable-stringify": "2.0.0", @@ -413,6 +449,7 @@ "version": "6.10.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -424,6 +461,7 @@ "version": "6.4.0", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -820,6 +858,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "dev": true, "requires": { "@babel/highlight": "^7.0.0" } @@ -876,6 +915,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz", "integrity": "sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==", + "dev": true, "requires": { "@babel/types": "^7.4.4", "jsesc": "^2.5.1", @@ -887,12 +927,14 @@ "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true } } }, @@ -900,6 +942,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", + "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -908,6 +951,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", + "dev": true, "requires": { "@babel/helper-explode-assignable-expression": "^7.1.0", "@babel/types": "^7.0.0" @@ -917,6 +961,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz", "integrity": "sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==", + "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.4.4", "@babel/traverse": "^7.4.4", @@ -927,6 +972,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz", "integrity": "sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg==", + "dev": true, "requires": { "@babel/helper-function-name": "^7.1.0", "@babel/types": "^7.5.5", @@ -937,6 +983,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -949,6 +996,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", + "dev": true, "requires": { "@babel/traverse": "^7.1.0", "@babel/types": "^7.0.0" @@ -958,6 +1006,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "dev": true, "requires": { "@babel/helper-get-function-arity": "^7.0.0", "@babel/template": "^7.1.0", @@ -968,6 +1017,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -976,6 +1026,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz", "integrity": "sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==", + "dev": true, "requires": { "@babel/types": "^7.4.4" } @@ -984,6 +1035,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz", "integrity": "sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA==", + "dev": true, "requires": { "@babel/types": "^7.5.5" }, @@ -992,6 +1044,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1004,6 +1057,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", + "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -1012,6 +1066,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz", "integrity": "sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw==", + "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/helper-simple-access": "^7.1.0", @@ -1025,6 +1080,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1037,6 +1093,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", + "dev": true, "requires": { "@babel/types": "^7.0.0" } @@ -1044,12 +1101,14 @@ "@babel/helper-plugin-utils": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", - "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==" + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "dev": true }, "@babel/helper-regex": { "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.5.5.tgz", "integrity": "sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==", + "dev": true, "requires": { "lodash": "^4.17.13" } @@ -1058,6 +1117,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", + "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-wrap-function": "^7.1.0", @@ -1070,6 +1130,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz", "integrity": "sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg==", + "dev": true, "requires": { "@babel/helper-member-expression-to-functions": "^7.5.5", "@babel/helper-optimise-call-expression": "^7.0.0", @@ -1081,6 +1142,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "dev": true, "requires": { "@babel/highlight": "^7.0.0" } @@ -1089,6 +1151,7 @@ "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", + "dev": true, "requires": { "@babel/types": "^7.6.3", "jsesc": "^2.5.1", @@ -1099,12 +1162,14 @@ "@babel/parser": { "version": "7.6.4", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", - "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==" + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", + "dev": true }, "@babel/traverse": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", + "dev": true, "requires": { "@babel/code-frame": "^7.5.5", "@babel/generator": "^7.6.3", @@ -1121,6 +1186,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1131,6 +1197,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -1138,7 +1205,8 @@ "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true } } }, @@ -1146,6 +1214,7 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", + "dev": true, "requires": { "@babel/template": "^7.1.0", "@babel/types": "^7.0.0" @@ -1155,6 +1224,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", + "dev": true, "requires": { "@babel/types": "^7.4.4" } @@ -1163,6 +1233,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", + "dev": true, "requires": { "@babel/helper-function-name": "^7.1.0", "@babel/template": "^7.1.0", @@ -1185,6 +1256,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "dev": true, "requires": { "chalk": "^2.0.0", "esutils": "^2.0.2", @@ -1194,19 +1266,22 @@ "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true } } }, "@babel/parser": { "version": "7.4.5", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz", - "integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==" + "integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==", + "dev": true }, "@babel/plugin-proposal-async-generator-functions": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-remap-async-to-generator": "^7.1.0", @@ -1217,6 +1292,7 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz", "integrity": "sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0" @@ -1226,6 +1302,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-json-strings": "^7.2.0" @@ -1235,6 +1312,7 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz", "integrity": "sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-object-rest-spread": "^7.2.0" @@ -1244,6 +1322,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-syntax-optional-catch-binding": "^7.2.0" @@ -1253,6 +1332,7 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz", "integrity": "sha512-NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", @@ -1262,12 +1342,14 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true }, "regexpu-core": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", + "dev": true, "requires": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.1.0", @@ -1280,12 +1362,14 @@ "regjsgen": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz", - "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==" + "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==", + "dev": true }, "regjsparser": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "dev": true, "requires": { "jsesc": "~0.5.0" } @@ -1296,6 +1380,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1304,6 +1389,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz", "integrity": "sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1312,6 +1398,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1320,6 +1407,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1328,6 +1416,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1336,6 +1425,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1344,6 +1434,7 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz", "integrity": "sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg==", + "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0", @@ -1354,6 +1445,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1362,6 +1454,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz", "integrity": "sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "lodash": "^4.17.13" @@ -1371,6 +1464,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz", "integrity": "sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg==", + "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-define-map": "^7.5.5", @@ -1386,6 +1480,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1394,6 +1489,7 @@ "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz", "integrity": "sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1402,6 +1498,7 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz", "integrity": "sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", @@ -1411,12 +1508,14 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true }, "regexpu-core": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", + "dev": true, "requires": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.1.0", @@ -1429,12 +1528,14 @@ "regjsgen": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz", - "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==" + "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==", + "dev": true }, "regjsparser": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "dev": true, "requires": { "jsesc": "~0.5.0" } @@ -1445,6 +1546,7 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz", "integrity": "sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1453,6 +1555,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", + "dev": true, "requires": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -1462,6 +1565,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz", "integrity": "sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1470,6 +1574,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz", "integrity": "sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==", + "dev": true, "requires": { "@babel/helper-function-name": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -1479,6 +1584,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1487,6 +1593,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz", "integrity": "sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1495,6 +1602,7 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz", "integrity": "sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg==", + "dev": true, "requires": { "@babel/helper-module-transforms": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0", @@ -1505,6 +1613,7 @@ "version": "7.6.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz", "integrity": "sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g==", + "dev": true, "requires": { "@babel/helper-module-transforms": "^7.4.4", "@babel/helper-plugin-utils": "^7.0.0", @@ -1516,6 +1625,7 @@ "version": "7.5.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz", "integrity": "sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg==", + "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.4.4", "@babel/helper-plugin-utils": "^7.0.0", @@ -1526,6 +1636,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", + "dev": true, "requires": { "@babel/helper-module-transforms": "^7.1.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -1535,6 +1646,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz", "integrity": "sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw==", + "dev": true, "requires": { "regexpu-core": "^4.6.0" }, @@ -1542,12 +1654,14 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true }, "regexpu-core": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", + "dev": true, "requires": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.1.0", @@ -1560,12 +1674,14 @@ "regjsgen": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz", - "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==" + "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==", + "dev": true }, "regjsparser": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "dev": true, "requires": { "jsesc": "~0.5.0" } @@ -1576,6 +1692,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz", "integrity": "sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1584,6 +1701,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz", "integrity": "sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-replace-supers": "^7.5.5" @@ -1593,6 +1711,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz", "integrity": "sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==", + "dev": true, "requires": { "@babel/helper-call-delegate": "^7.4.4", "@babel/helper-get-function-arity": "^7.0.0", @@ -1603,6 +1722,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz", "integrity": "sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1611,6 +1731,7 @@ "version": "7.4.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz", "integrity": "sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==", + "dev": true, "requires": { "regenerator-transform": "^0.14.0" } @@ -1619,6 +1740,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz", "integrity": "sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1627,6 +1749,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1635,6 +1758,7 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz", "integrity": "sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1643,6 +1767,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.0.0" @@ -1652,6 +1777,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz", "integrity": "sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==", + "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0" @@ -1661,6 +1787,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0" } @@ -1669,6 +1796,7 @@ "version": "7.6.2", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz", "integrity": "sha512-orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw==", + "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-regex": "^7.4.4", @@ -1678,12 +1806,14 @@ "jsesc": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true }, "regexpu-core": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.6.0.tgz", "integrity": "sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==", + "dev": true, "requires": { "regenerate": "^1.4.0", "regenerate-unicode-properties": "^8.1.0", @@ -1696,12 +1826,14 @@ "regjsgen": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz", - "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==" + "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==", + "dev": true }, "regjsparser": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "dev": true, "requires": { "jsesc": "~0.5.0" } @@ -1712,6 +1844,7 @@ "version": "7.5.5", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.5.5.tgz", "integrity": "sha512-GMZQka/+INwsMz1A5UEql8tG015h5j/qjptpKY2gJ7giy8ohzU710YciJB5rcKsWGWHiW3RUnHib0E5/m3Tp3A==", + "dev": true, "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0", @@ -1769,6 +1902,7 @@ "version": "7.6.3", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1798,6 +1932,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/parser": "^7.4.4", @@ -1808,6 +1943,7 @@ "version": "7.4.5", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.5.tgz", "integrity": "sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A==", + "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "@babel/generator": "^7.4.4", @@ -1824,6 +1960,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -1831,7 +1968,8 @@ "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true } } }, @@ -1839,6 +1977,7 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", + "dev": true, "requires": { "esutils": "^2.0.2", "lodash": "^4.17.11", @@ -1848,7 +1987,8 @@ "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true } } }, @@ -2638,6 +2778,7 @@ "version": "8.3.12", "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-8.3.12.tgz", "integrity": "sha512-jUf6TDSMO/omo74KoSBQfTfna59NN6kFLA6FchBL0LjMo8m5BrQ3MH+SOgBpfy0C2F2mDTefktVgk/5UZebiOg==", + "dev": true, "requires": { "@angular-devkit/core": "8.3.12", "enhanced-resolve": "4.1.0", @@ -2650,6 +2791,7 @@ "version": "6.4.0", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -2952,7 +3094,8 @@ "@types/events": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" + "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", + "dev": true }, "@types/file-saver": { "version": "2.0.1", @@ -2964,6 +3107,7 @@ "version": "7.1.1", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "dev": true, "requires": { "@types/events": "*", "@types/minimatch": "*", @@ -3010,12 +3154,14 @@ "@types/minimatch": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "dev": true }, "@types/node": { "version": "11.9.6", "resolved": "https://registry.npmjs.org/@types/node/-/node-11.9.6.tgz", - "integrity": "sha512-4hS2K4gwo9/aXIcoYxCtHpdgd8XUeDmo1siRCAH3RziXB65JlPqUFMtfy9VPj+og7dp3w1TFjGwYga4e0m9GwA==" + "integrity": "sha512-4hS2K4gwo9/aXIcoYxCtHpdgd8XUeDmo1siRCAH3RziXB65JlPqUFMtfy9VPj+og7dp3w1TFjGwYga4e0m9GwA==", + "dev": true }, "@types/normalize-package-data": { "version": "2.4.0", @@ -3047,7 +3193,8 @@ "@types/source-list-map": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", - "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true }, "@types/stack-utils": { "version": "1.0.1", @@ -3059,6 +3206,7 @@ "version": "0.1.5", "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.5.tgz", "integrity": "sha512-zfvjpp7jiafSmrzJ2/i3LqOyTYTuJ7u1KOXlKgDlvsj9Rr0x7ZiYu5lZbXwobL7lmsRNtPXlBfmaUD8eU2Hu8w==", + "dev": true, "requires": { "@types/node": "*", "@types/source-list-map": "*", @@ -3068,7 +3216,8 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true } } }, @@ -3082,6 +3231,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "dev": true, "requires": { "@webassemblyjs/helper-module-context": "1.8.5", "@webassemblyjs/helper-wasm-bytecode": "1.8.5", @@ -3091,22 +3241,26 @@ "@webassemblyjs/floating-point-hex-parser": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", - "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==" + "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", + "dev": true }, "@webassemblyjs/helper-api-error": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", - "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==" + "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", + "dev": true }, "@webassemblyjs/helper-buffer": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", - "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==" + "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", + "dev": true }, "@webassemblyjs/helper-code-frame": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", + "dev": true, "requires": { "@webassemblyjs/wast-printer": "1.8.5" } @@ -3114,12 +3268,14 @@ "@webassemblyjs/helper-fsm": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", - "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==" + "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", + "dev": true }, "@webassemblyjs/helper-module-context": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "mamacro": "^0.0.3" @@ -3128,12 +3284,14 @@ "@webassemblyjs/helper-wasm-bytecode": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", - "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==" + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "dev": true }, "@webassemblyjs/helper-wasm-section": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-buffer": "1.8.5", @@ -3145,6 +3303,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", + "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } @@ -3153,6 +3312,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", + "dev": true, "requires": { "@xtuc/long": "4.2.2" } @@ -3160,12 +3320,14 @@ "@webassemblyjs/utf8": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", - "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==" + "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", + "dev": true }, "@webassemblyjs/wasm-edit": { "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-buffer": "1.8.5", @@ -3181,6 +3343,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-wasm-bytecode": "1.8.5", @@ -3193,6 +3356,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-buffer": "1.8.5", @@ -3204,6 +3368,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-api-error": "1.8.5", @@ -3217,6 +3382,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/floating-point-hex-parser": "1.8.5", @@ -3230,6 +3396,7 @@ "version": "1.8.5", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/wast-parser": "1.8.5", @@ -3239,12 +3406,14 @@ "@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true }, "@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true }, "@yarnpkg/lockfile": { "version": "1.1.0", @@ -3272,6 +3441,7 @@ "version": "1.3.7", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, "requires": { "mime-types": "~2.1.24", "negotiator": "0.6.2" @@ -3337,17 +3507,20 @@ "ajv-errors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true }, "ajv-keywords": { "version": "3.4.1", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", - "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==" + "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", + "dev": true }, "amdefine": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true }, "ansi-align": { "version": "3.0.0", @@ -3395,7 +3568,8 @@ "ansi-colors": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true }, "ansi-escapes": { "version": "1.4.0", @@ -3406,22 +3580,26 @@ "ansi-html": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "dev": true }, "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true }, "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true }, "anymatch": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, "requires": { "micromatch": "^3.1.4", "normalize-path": "^2.1.1" @@ -3436,7 +3614,8 @@ "aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true }, "arch": { "version": "2.1.1", @@ -3454,6 +3633,7 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, "requires": { "sprintf-js": "~1.0.2" } @@ -3471,17 +3651,20 @@ "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true }, "arr-flatten": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true }, "arr-union": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true }, "array-equal": { "version": "1.0.0", @@ -3504,7 +3687,8 @@ "array-flatten": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true }, "array-ify": { "version": "1.0.0", @@ -3528,6 +3712,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, "requires": { "array-uniq": "^1.0.1" } @@ -3535,12 +3720,14 @@ "array-uniq": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true }, "array-unique": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true }, "arrify": { "version": "1.0.1", @@ -3551,7 +3738,8 @@ "asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "dev": true }, "asn1": { "version": "0.2.4", @@ -3565,6 +3753,7 @@ "version": "4.10.1", "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, "requires": { "bn.js": "^4.0.0", "inherits": "^2.0.1", @@ -3575,6 +3764,7 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, "requires": { "object-assign": "^4.1.1", "util": "0.10.3" @@ -3583,12 +3773,14 @@ "inherits": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true }, "util": { "version": "0.10.3", "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, "requires": { "inherits": "2.0.1" } @@ -3603,7 +3795,8 @@ "assign-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true }, "ast-types-flow": { "version": "0.0.7", @@ -3621,6 +3814,7 @@ "version": "2.6.1", "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", + "dev": true, "requires": { "lodash": "^4.17.10" } @@ -3628,12 +3822,14 @@ "async-each": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true }, "async-limiter": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" + "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", + "dev": true }, "async-retry": { "version": "1.2.3", @@ -3660,7 +3856,8 @@ "atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true }, "atob-lite": { "version": "2.0.0", @@ -3751,6 +3948,7 @@ "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, "requires": { "chalk": "^1.1.3", "esutils": "^2.0.2", @@ -3761,6 +3959,7 @@ "version": "1.1.3", "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, "requires": { "ansi-styles": "^2.2.1", "escape-string-regexp": "^1.0.2", @@ -3772,7 +3971,8 @@ "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true } } }, @@ -3780,6 +3980,7 @@ "version": "6.26.1", "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", + "dev": true, "requires": { "babel-messages": "^6.23.0", "babel-runtime": "^6.26.0", @@ -3794,12 +3995,14 @@ "jsesc": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=", + "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true } } }, @@ -3830,6 +4033,7 @@ "version": "6.23.0", "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "dev": true, "requires": { "babel-runtime": "^6.22.0" } @@ -3838,6 +4042,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz", "integrity": "sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==", + "dev": true, "requires": { "object.assign": "^4.1.0" } @@ -3967,6 +4172,7 @@ "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dev": true, "requires": { "core-js": "^2.4.0", "regenerator-runtime": "^0.11.0" @@ -3976,6 +4182,7 @@ "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "dev": true, "requires": { "babel-runtime": "^6.26.0", "babel-traverse": "^6.26.0", @@ -3988,6 +4195,7 @@ "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "dev": true, "requires": { "babel-code-frame": "^6.26.0", "babel-messages": "^6.23.0", @@ -4004,6 +4212,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -4011,12 +4220,14 @@ "globals": { "version": "9.18.0", "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "dev": true }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true } } }, @@ -4024,6 +4235,7 @@ "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "dev": true, "requires": { "babel-runtime": "^6.26.0", "esutils": "^2.0.2", @@ -4034,24 +4246,28 @@ "to-fast-properties": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true } } }, "babylon": { "version": "6.18.0", "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true }, "base": { "version": "0.11.2", "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, "requires": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -4066,6 +4282,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -4074,6 +4291,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -4082,6 +4300,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -4090,6 +4309,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -4106,7 +4326,8 @@ "batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true }, "bcrypt-pbkdf": { "version": "1.0.2", @@ -4130,12 +4351,14 @@ "big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true }, "binary-extensions": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", - "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==" + "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==", + "dev": true }, "bluebird": { "version": "3.5.0", @@ -4146,12 +4369,14 @@ "bn.js": { "version": "4.11.8", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==" + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true }, "body-parser": { "version": "1.19.0", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, "requires": { "bytes": "3.1.0", "content-type": "~1.0.4", @@ -4168,12 +4393,14 @@ "bytes": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -4181,12 +4408,14 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "qs": { "version": "6.7.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true } } }, @@ -4194,6 +4423,7 @@ "version": "3.5.0", "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, "requires": { "array-flatten": "^2.1.0", "deep-equal": "^1.0.1", @@ -4269,6 +4499,7 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -4278,6 +4509,7 @@ "version": "2.3.2", "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "requires": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -4295,6 +4527,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -4304,7 +4537,8 @@ "brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true }, "browser-process-hrtime": { "version": "0.1.3", @@ -4333,6 +4567,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, "requires": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", @@ -4346,6 +4581,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, "requires": { "browserify-aes": "^1.0.4", "browserify-des": "^1.0.0", @@ -4356,6 +4592,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, "requires": { "cipher-base": "^1.0.1", "des.js": "^1.0.0", @@ -4367,6 +4604,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, "requires": { "bn.js": "^4.1.0", "randombytes": "^2.0.1" @@ -4376,6 +4614,7 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, "requires": { "bn.js": "^4.1.1", "browserify-rsa": "^4.0.0", @@ -4390,6 +4629,7 @@ "version": "0.2.0", "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, "requires": { "pako": "~1.0.5" } @@ -4398,6 +4638,7 @@ "version": "4.6.6", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.6.6.tgz", "integrity": "sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA==", + "dev": true, "requires": { "caniuse-lite": "^1.0.30000984", "electron-to-chromium": "^1.3.191", @@ -4437,17 +4678,20 @@ "buffer-from": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true }, "buffer-indexof": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true }, "buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true }, "builtin-modules": { "version": "3.1.0", @@ -4458,7 +4702,8 @@ "builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true }, "builtins": { "version": "1.0.3", @@ -4469,12 +4714,14 @@ "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true }, "cacache": { "version": "12.0.2", "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.2.tgz", "integrity": "sha512-ifKgxH2CKhJEg6tNdAwziu6Q33EvuG26tYcda6PT3WKisZcYDXsnEdnRv67Po3yCzFfaSoMjGZzJyD2c3DT1dg==", + "dev": true, "requires": { "bluebird": "^3.5.5", "chownr": "^1.1.1", @@ -4496,12 +4743,14 @@ "bluebird": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz", - "integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==" + "integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==", + "dev": true }, "glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -4515,6 +4764,7 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, "requires": { "yallist": "^3.0.2" } @@ -4522,7 +4772,8 @@ "yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true } } }, @@ -4530,6 +4781,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, "requires": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -4599,6 +4851,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, "requires": { "callsites": "^2.0.0" } @@ -4607,6 +4860,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, "requires": { "caller-callsite": "^2.0.0" } @@ -4614,7 +4868,8 @@ "callsites": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true }, "camel-case": { "version": "3.0.0", @@ -4644,7 +4899,8 @@ "caniuse-lite": { "version": "1.0.30000989", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz", - "integrity": "sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==" + "integrity": "sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==", + "dev": true }, "canonical-path": { "version": "1.0.0", @@ -4670,6 +4926,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -4680,6 +4937,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -4707,6 +4965,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.2.2.tgz", "integrity": "sha512-bw3pm7kZ2Wa6+jQWYP/c7bAZy3i4GwiIiMO2EeRjrE48l8vBqC/WvFhSF0xyM8fQiPEGvwMY/5bqDG7sSEOuhg==", + "dev": true, "requires": { "anymatch": "~3.1.1", "braces": "~3.0.2", @@ -4722,6 +4981,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -4731,6 +4991,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, "requires": { "fill-range": "^7.0.1" } @@ -4739,6 +5000,7 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, "requires": { "to-regex-range": "^5.0.1" } @@ -4747,12 +5009,14 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.1.tgz", "integrity": "sha512-4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw==", + "dev": true, "optional": true }, "glob-parent": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz", "integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==", + "dev": true, "requires": { "is-glob": "^4.0.1" } @@ -4760,17 +5024,20 @@ "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, "requires": { "is-number": "^7.0.0" } @@ -4780,12 +5047,14 @@ "chownr": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz", - "integrity": "sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==" + "integrity": "sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==", + "dev": true }, "chrome-trace-event": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dev": true, "requires": { "tslib": "^1.9.0" } @@ -4800,6 +5069,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, "requires": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -4808,12 +5078,14 @@ "circular-dependency-plugin": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.0.tgz", - "integrity": "sha512-7p4Kn/gffhQaavNfyDFg7LS5S/UT1JAjyGd4UqR2+jzoYF02eDkj0Ec3+48TsIa4zghjLY87nQHIh/ecK9qLdw==" + "integrity": "sha512-7p4Kn/gffhQaavNfyDFg7LS5S/UT1JAjyGd4UqR2+jzoYF02eDkj0Ec3+48TsIa4zghjLY87nQHIh/ecK9qLdw==", + "dev": true }, "class-utils": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, "requires": { "arr-union": "^3.1.0", "define-property": "^0.2.5", @@ -4825,6 +5097,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -4835,6 +5108,7 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", + "dev": true, "requires": { "source-map": "~0.6.0" }, @@ -4842,7 +5116,8 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true } } }, @@ -4887,6 +5162,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "dev": true, "requires": { "string-width": "^2.1.1", "strip-ansi": "^4.0.0", @@ -4896,17 +5172,20 @@ "ansi-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" @@ -4916,6 +5195,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, "requires": { "ansi-regex": "^3.0.0" } @@ -4925,12 +5205,14 @@ "clone": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true }, "clone-deep": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, "requires": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", @@ -4955,12 +5237,14 @@ "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true }, "code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true }, "codelyzer": { "version": "5.0.1", @@ -4997,6 +5281,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, "requires": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -5006,6 +5291,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "requires": { "color-name": "1.1.3" } @@ -5013,7 +5299,8 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true }, "combined-stream": { "version": "1.0.8", @@ -5038,7 +5325,8 @@ "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true }, "compare-func": { "version": "1.3.2", @@ -5053,12 +5341,14 @@ "component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true }, "compressible": { "version": "2.0.17", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz", "integrity": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==", + "dev": true, "requires": { "mime-db": ">= 1.40.0 < 2" } @@ -5067,6 +5357,7 @@ "version": "1.7.4", "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, "requires": { "accepts": "~1.3.5", "bytes": "3.0.0", @@ -5081,6 +5372,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -5088,19 +5380,22 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true } } }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "concat-stream": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -5136,12 +5431,14 @@ "connect-history-api-fallback": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true }, "console-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true, "requires": { "date-now": "^0.1.4" } @@ -5149,12 +5446,14 @@ "constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true }, "content-disposition": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, "requires": { "safe-buffer": "5.1.2" } @@ -5162,7 +5461,8 @@ "content-type": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true }, "conventional-changelog": { "version": "3.1.8", @@ -5954,6 +6254,7 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "dev": true, "requires": { "safe-buffer": "~5.1.1" } @@ -5961,17 +6262,20 @@ "cookie": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true }, "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true }, "copy-concurrently": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, "requires": { "aproba": "^1.1.1", "fs-write-stream-atomic": "^1.0.8", @@ -5984,12 +6288,14 @@ "copy-descriptor": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true }, "copy-webpack-plugin": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.0.4.tgz", "integrity": "sha512-YBuYGpSzoCHSSDGyHy6VJ7SHojKp6WHT4D7ItcQFNAYx2hrwkMe56e97xfVR0/ovDuMTrMffXUiltvQljtAGeg==", + "dev": true, "requires": { "cacache": "^11.3.3", "find-cache-dir": "^2.1.0", @@ -6008,12 +6314,14 @@ "bluebird": { "version": "3.7.1", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz", - "integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==" + "integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==", + "dev": true }, "cacache": { "version": "11.3.3", "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.3.tgz", "integrity": "sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==", + "dev": true, "requires": { "bluebird": "^3.5.5", "chownr": "^1.1.1", @@ -6035,6 +6343,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, "requires": { "commondir": "^1.0.1", "make-dir": "^2.0.0", @@ -6045,6 +6354,7 @@ "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -6058,6 +6368,7 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, "requires": { "yallist": "^3.0.2" } @@ -6066,6 +6377,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, "requires": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -6074,12 +6386,14 @@ "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true }, "p-limit": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -6087,17 +6401,20 @@ "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true }, "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true }, "yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true } } }, @@ -6110,6 +6427,7 @@ "version": "3.3.2", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.3.2.tgz", "integrity": "sha512-gfiK4QnNXhnnHVOIZst2XHdFfdMTPxtR0EGs0TdILMlGIft+087oH6/Sw2xTTIjpWXC9vEwsJA8VG3XTGcmO5g==", + "dev": true, "requires": { "browserslist": "^4.7.0", "semver": "^6.3.0" @@ -6119,6 +6437,7 @@ "version": "4.7.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.1.tgz", "integrity": "sha512-QtULFqKIAtiyNx7NhZ/p4rB8m3xDozVo/pi5VgTlADLF2tNigz/QH+v0m5qhn7XfHT7u+607NcCNOnC0HZAlMg==", + "dev": true, "requires": { "caniuse-lite": "^1.0.30000999", "electron-to-chromium": "^1.3.284", @@ -6128,12 +6447,14 @@ "caniuse-lite": { "version": "1.0.30000999", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz", - "integrity": "sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg==" + "integrity": "sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg==", + "dev": true }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, @@ -6146,6 +6467,7 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, "requires": { "import-fresh": "^2.0.0", "is-directory": "^0.3.1", @@ -6157,6 +6479,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, "requires": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -6168,6 +6491,7 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, "requires": { "bn.js": "^4.1.0", "elliptic": "^6.0.0" @@ -6177,6 +6501,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, "requires": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", @@ -6189,6 +6514,7 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, "requires": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", @@ -6214,6 +6540,7 @@ "version": "3.12.0", "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, "requires": { "browserify-cipher": "^1.0.0", "browserify-sign": "^4.0.0", @@ -6237,7 +6564,8 @@ "css-parse": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz", - "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=" + "integrity": "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs=", + "dev": true }, "css-selector-tokenizer": { "version": "0.7.1", @@ -6298,7 +6626,8 @@ "cyclist": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "dev": true }, "cypress": { "version": "3.3.1", @@ -6419,7 +6748,8 @@ "date-now": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true }, "dateformat": { "version": "3.0.3", @@ -6431,6 +6761,7 @@ "version": "3.2.6", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -6444,7 +6775,8 @@ "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true }, "decamelize-keys": { "version": "1.1.0", @@ -6459,7 +6791,8 @@ "decode-uri-component": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true }, "decompress-response": { "version": "3.3.0", @@ -6474,6 +6807,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.0.tgz", "integrity": "sha512-ZbfWJq/wN1Z273o7mUSjILYqehAktR2NVoSrOukDkU9kg2v/Uv89yU4Cvz8seJeAmtN5oqiefKq8FPuXOboqLw==", + "dev": true, "requires": { "is-arguments": "^1.0.4", "is-date-object": "^1.0.1", @@ -6505,6 +6839,7 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, "requires": { "execa": "^1.0.0", "ip-regex": "^2.1.0" @@ -6514,6 +6849,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, "requires": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", @@ -6528,6 +6864,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, "requires": { "pump": "^3.0.0" } @@ -6561,6 +6898,7 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, "requires": { "object-keys": "^1.0.12" } @@ -6569,6 +6907,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, "requires": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -6578,6 +6917,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -6586,6 +6926,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -6594,6 +6935,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -6606,6 +6948,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, "requires": { "@types/glob": "^7.1.1", "globby": "^6.1.0", @@ -6620,6 +6963,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, "requires": { "array-union": "^1.0.1", "glob": "^7.0.3", @@ -6631,19 +6975,22 @@ "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true } } }, "p-map": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true }, "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true } } }, @@ -6655,7 +7002,8 @@ "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true }, "dependency-graph": { "version": "0.7.2", @@ -6683,6 +7031,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, "requires": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" @@ -6691,12 +7040,14 @@ "destroy": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true }, "detect-indent": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", + "dev": true, "requires": { "repeating": "^2.0.0" } @@ -6710,7 +7061,8 @@ "detect-node": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", + "dev": true }, "detect-repo-changelog": { "version": "1.0.1", @@ -6750,6 +7102,7 @@ "version": "5.0.3", "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, "requires": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", @@ -6760,6 +7113,7 @@ "version": "2.2.2", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dev": true, "requires": { "path-type": "^3.0.0" } @@ -6767,12 +7121,14 @@ "dns-equal": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true }, "dns-packet": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "dev": true, "requires": { "ip": "^1.1.0", "safe-buffer": "^5.0.1" @@ -6782,6 +7138,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, "requires": { "buffer-indexof": "^1.0.0" } @@ -6801,7 +7158,8 @@ "domain-browser": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true }, "domexception": { "version": "1.0.1", @@ -6836,6 +7194,7 @@ "version": "3.7.1", "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, "requires": { "end-of-stream": "^1.0.0", "inherits": "^2.0.1", @@ -6855,12 +7214,14 @@ "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true }, "electron-to-chromium": { "version": "1.3.288", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.288.tgz", - "integrity": "sha512-ud61yGzwhaU1Xj3+erbSQfouP4zFAS61nR+heDLLDYTOWfnkZVMvt09dXk9raam4Rv1vLY5ux5BxTmlDTdx5zQ==" + "integrity": "sha512-ud61yGzwhaU1Xj3+erbSQfouP4zFAS61nR+heDLLDYTOWfnkZVMvt09dXk9raam4Rv1vLY5ux5BxTmlDTdx5zQ==", + "dev": true }, "elegant-spinner": { "version": "1.0.1", @@ -6872,6 +7233,7 @@ "version": "6.5.1", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", + "dev": true, "requires": { "bn.js": "^4.4.0", "brorand": "^1.0.1", @@ -6891,12 +7253,14 @@ "emojis-list": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true }, "encoding": { "version": "0.1.12", @@ -6919,6 +7283,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "dev": true, "requires": { "graceful-fs": "^4.1.2", "memory-fs": "^0.4.0", @@ -6935,6 +7300,7 @@ "version": "0.1.7", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, "requires": { "prr": "~1.0.1" } @@ -6943,6 +7309,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, "requires": { "is-arrayish": "^0.2.1" } @@ -6990,12 +7357,14 @@ "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true }, "escodegen": { "version": "1.11.1", @@ -7029,6 +7398,7 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, "requires": { "esrecurse": "^4.1.0", "estraverse": "^4.1.1" @@ -7037,12 +7407,14 @@ "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true }, "esrecurse": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, "requires": { "estraverse": "^4.1.0" } @@ -7050,7 +7422,8 @@ "estraverse": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "dev": true }, "estree-walker": { "version": "0.6.1", @@ -7061,12 +7434,14 @@ "esutils": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true }, "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true }, "event-stream": { "version": "3.3.4", @@ -7085,17 +7460,20 @@ "eventemitter3": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==", + "dev": true }, "events": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", - "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==" + "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", + "dev": true }, "eventsource": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", + "dev": true, "requires": { "original": "^1.0.0" } @@ -7104,6 +7482,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, "requires": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" @@ -7155,6 +7534,7 @@ "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, "requires": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -7169,6 +7549,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -7177,6 +7558,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -7185,6 +7567,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -7192,7 +7575,8 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true } } }, @@ -7225,6 +7609,7 @@ "version": "4.17.1", "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, "requires": { "accepts": "~1.3.7", "array-flatten": "1.1.1", @@ -7261,12 +7646,14 @@ "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -7274,12 +7661,14 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "qs": { "version": "6.7.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true } } }, @@ -7292,6 +7681,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, "requires": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -7301,6 +7691,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { "is-plain-object": "^2.0.4" } @@ -7333,6 +7724,7 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, "requires": { "array-unique": "^0.3.2", "define-property": "^1.0.0", @@ -7348,6 +7740,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -7356,6 +7749,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -7364,6 +7758,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -7372,6 +7767,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -7380,6 +7776,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -7534,6 +7931,7 @@ "version": "0.10.0", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true, "requires": { "websocket-driver": ">=0.5.1" } @@ -7559,7 +7957,8 @@ "figgy-pudding": { "version": "3.5.1", "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", - "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==" + "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", + "dev": true }, "figures": { "version": "1.7.0", @@ -7575,6 +7974,7 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.2.0.tgz", "integrity": "sha512-+xZnaK5R8kBJrHK0/6HRlrKNamvVS5rjyuju+rnyxRGuwUJwpAMsVzUl5dz6rK8brkzjV6JpcFNjp6NqV0g1OQ==", + "dev": true, "requires": { "loader-utils": "^1.2.3", "schema-utils": "^2.0.0" @@ -7584,6 +7984,7 @@ "version": "6.10.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -7595,6 +7996,7 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.5.0.tgz", "integrity": "sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==", + "dev": true, "requires": { "ajv": "^6.10.2", "ajv-keywords": "^3.4.1" @@ -7611,6 +8013,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -7622,6 +8025,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -7632,6 +8036,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -7646,6 +8051,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -7653,7 +8059,8 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true } } }, @@ -7661,6 +8068,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", "integrity": "sha512-t7ulV1fmbxh5G9l/492O1p5+EBbr3uwpt6odhFTMc+nWyhmbloe+ja9BZ8pIBtqFWhOmCWVjx+pTW4zDkFoclw==", + "dev": true, "requires": { "commondir": "^1.0.1", "make-dir": "^3.0.0", @@ -7671,6 +8079,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "requires": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -7680,6 +8089,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, "requires": { "p-locate": "^4.1.0" } @@ -7688,6 +8098,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz", "integrity": "sha512-grNJDhb8b1Jm1qeqW5R/O63wUo4UXo2v2HMic6YT9i/HBlF93S8jkMgH7yugvY9ABDShH4VZMn8I+U8+fCNegw==", + "dev": true, "requires": { "semver": "^6.0.0" } @@ -7696,6 +8107,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -7704,6 +8116,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, "requires": { "p-limit": "^2.2.0" } @@ -7711,17 +8124,20 @@ "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true }, "pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, "requires": { "find-up": "^4.0.0" } @@ -7729,7 +8145,8 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, @@ -7769,6 +8186,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, "requires": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" @@ -7778,6 +8196,7 @@ "version": "1.9.0", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.9.0.tgz", "integrity": "sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A==", + "dev": true, "requires": { "debug": "^3.0.0" } @@ -7785,7 +8204,8 @@ "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true }, "forever-agent": { "version": "0.6.1", @@ -7805,12 +8225,14 @@ "forwarded": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "dev": true }, "fragment-cache": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, "requires": { "map-cache": "^0.2.2" } @@ -7818,7 +8240,8 @@ "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true }, "from": { "version": "0.1.7", @@ -7829,6 +8252,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" @@ -7858,6 +8282,7 @@ "version": "1.0.10", "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, "requires": { "graceful-fs": "^4.1.2", "iferr": "^0.1.5", @@ -7868,12 +8293,14 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "fsevents": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "dev": true, "optional": true, "requires": { "nan": "^2.12.1", @@ -7883,21 +8310,25 @@ "abbrev": { "version": "1.1.1", "bundled": true, + "dev": true, "optional": true }, "ansi-regex": { "version": "2.1.1", "bundled": true, + "dev": true, "optional": true }, "aproba": { "version": "1.2.0", "bundled": true, + "dev": true, "optional": true }, "are-we-there-yet": { "version": "1.1.5", "bundled": true, + "dev": true, "optional": true, "requires": { "delegates": "^1.0.0", @@ -7907,11 +8338,13 @@ "balanced-match": { "version": "1.0.0", "bundled": true, + "dev": true, "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, + "dev": true, "optional": true, "requires": { "balanced-match": "^1.0.0", @@ -7921,31 +8354,37 @@ "chownr": { "version": "1.1.1", "bundled": true, + "dev": true, "optional": true }, "code-point-at": { "version": "1.1.0", "bundled": true, + "dev": true, "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, + "dev": true, "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, + "dev": true, "optional": true }, "core-util-is": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true }, "debug": { "version": "4.1.1", "bundled": true, + "dev": true, "optional": true, "requires": { "ms": "^2.1.1" @@ -7954,21 +8393,25 @@ "deep-extend": { "version": "0.6.0", "bundled": true, + "dev": true, "optional": true }, "delegates": { "version": "1.0.0", "bundled": true, + "dev": true, "optional": true }, "detect-libc": { "version": "1.0.3", "bundled": true, + "dev": true, "optional": true }, "fs-minipass": { "version": "1.2.5", "bundled": true, + "dev": true, "optional": true, "requires": { "minipass": "^2.2.1" @@ -7977,11 +8420,13 @@ "fs.realpath": { "version": "1.0.0", "bundled": true, + "dev": true, "optional": true }, "gauge": { "version": "2.7.4", "bundled": true, + "dev": true, "optional": true, "requires": { "aproba": "^1.0.3", @@ -7997,6 +8442,7 @@ "glob": { "version": "7.1.3", "bundled": true, + "dev": true, "optional": true, "requires": { "fs.realpath": "^1.0.0", @@ -8010,11 +8456,13 @@ "has-unicode": { "version": "2.0.1", "bundled": true, + "dev": true, "optional": true }, "iconv-lite": { "version": "0.4.24", "bundled": true, + "dev": true, "optional": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" @@ -8023,6 +8471,7 @@ "ignore-walk": { "version": "3.0.1", "bundled": true, + "dev": true, "optional": true, "requires": { "minimatch": "^3.0.4" @@ -8031,6 +8480,7 @@ "inflight": { "version": "1.0.6", "bundled": true, + "dev": true, "optional": true, "requires": { "once": "^1.3.0", @@ -8040,16 +8490,19 @@ "inherits": { "version": "2.0.3", "bundled": true, + "dev": true, "optional": true }, "ini": { "version": "1.3.5", "bundled": true, + "dev": true, "optional": true }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, + "dev": true, "optional": true, "requires": { "number-is-nan": "^1.0.0" @@ -8058,11 +8511,13 @@ "isarray": { "version": "1.0.0", "bundled": true, + "dev": true, "optional": true }, "minimatch": { "version": "3.0.4", "bundled": true, + "dev": true, "optional": true, "requires": { "brace-expansion": "^1.1.7" @@ -8071,11 +8526,13 @@ "minimist": { "version": "0.0.8", "bundled": true, + "dev": true, "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, + "dev": true, "optional": true, "requires": { "safe-buffer": "^5.1.2", @@ -8085,6 +8542,7 @@ "minizlib": { "version": "1.2.1", "bundled": true, + "dev": true, "optional": true, "requires": { "minipass": "^2.2.1" @@ -8093,6 +8551,7 @@ "mkdirp": { "version": "0.5.1", "bundled": true, + "dev": true, "optional": true, "requires": { "minimist": "0.0.8" @@ -8101,11 +8560,13 @@ "ms": { "version": "2.1.1", "bundled": true, + "dev": true, "optional": true }, "needle": { "version": "2.3.0", "bundled": true, + "dev": true, "optional": true, "requires": { "debug": "^4.1.0", @@ -8116,6 +8577,7 @@ "node-pre-gyp": { "version": "0.12.0", "bundled": true, + "dev": true, "optional": true, "requires": { "detect-libc": "^1.0.2", @@ -8133,6 +8595,7 @@ "nopt": { "version": "4.0.1", "bundled": true, + "dev": true, "optional": true, "requires": { "abbrev": "1", @@ -8142,11 +8605,13 @@ "npm-bundled": { "version": "1.0.6", "bundled": true, + "dev": true, "optional": true }, "npm-packlist": { "version": "1.4.1", "bundled": true, + "dev": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", @@ -8156,6 +8621,7 @@ "npmlog": { "version": "4.1.2", "bundled": true, + "dev": true, "optional": true, "requires": { "are-we-there-yet": "~1.1.2", @@ -8167,16 +8633,19 @@ "number-is-nan": { "version": "1.0.1", "bundled": true, + "dev": true, "optional": true }, "object-assign": { "version": "4.1.1", "bundled": true, + "dev": true, "optional": true }, "once": { "version": "1.4.0", "bundled": true, + "dev": true, "optional": true, "requires": { "wrappy": "1" @@ -8185,16 +8654,19 @@ "os-homedir": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true }, "os-tmpdir": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true }, "osenv": { "version": "0.1.5", "bundled": true, + "dev": true, "optional": true, "requires": { "os-homedir": "^1.0.0", @@ -8204,16 +8676,19 @@ "path-is-absolute": { "version": "1.0.1", "bundled": true, + "dev": true, "optional": true }, "process-nextick-args": { "version": "2.0.0", "bundled": true, + "dev": true, "optional": true }, "rc": { "version": "1.2.8", "bundled": true, + "dev": true, "optional": true, "requires": { "deep-extend": "^0.6.0", @@ -8225,6 +8700,7 @@ "minimist": { "version": "1.2.0", "bundled": true, + "dev": true, "optional": true } } @@ -8232,6 +8708,7 @@ "readable-stream": { "version": "2.3.6", "bundled": true, + "dev": true, "optional": true, "requires": { "core-util-is": "~1.0.0", @@ -8246,6 +8723,7 @@ "rimraf": { "version": "2.6.3", "bundled": true, + "dev": true, "optional": true, "requires": { "glob": "^7.1.3" @@ -8254,36 +8732,43 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, + "dev": true, "optional": true }, "safer-buffer": { "version": "2.1.2", "bundled": true, + "dev": true, "optional": true }, "sax": { "version": "1.2.4", "bundled": true, + "dev": true, "optional": true }, "semver": { "version": "5.7.0", "bundled": true, + "dev": true, "optional": true }, "set-blocking": { "version": "2.0.0", "bundled": true, + "dev": true, "optional": true }, "signal-exit": { "version": "3.0.2", "bundled": true, + "dev": true, "optional": true }, "string-width": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true, "requires": { "code-point-at": "^1.0.0", @@ -8294,6 +8779,7 @@ "string_decoder": { "version": "1.1.1", "bundled": true, + "dev": true, "optional": true, "requires": { "safe-buffer": "~5.1.0" @@ -8302,6 +8788,7 @@ "strip-ansi": { "version": "3.0.1", "bundled": true, + "dev": true, "optional": true, "requires": { "ansi-regex": "^2.0.0" @@ -8310,11 +8797,13 @@ "strip-json-comments": { "version": "2.0.1", "bundled": true, + "dev": true, "optional": true }, "tar": { "version": "4.4.8", "bundled": true, + "dev": true, "optional": true, "requires": { "chownr": "^1.1.1", @@ -8329,11 +8818,13 @@ "util-deprecate": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true }, "wide-align": { "version": "1.1.3", "bundled": true, + "dev": true, "optional": true, "requires": { "string-width": "^1.0.2 || 2" @@ -8342,11 +8833,13 @@ "wrappy": { "version": "1.0.2", "bundled": true, + "dev": true, "optional": true }, "yallist": { "version": "3.0.3", "bundled": true, + "dev": true, "optional": true } } @@ -8354,7 +8847,8 @@ "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "genfun": { "version": "5.0.0", @@ -8365,7 +8859,8 @@ "get-caller-file": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true }, "get-pkg-repo": { "version": "1.4.0", @@ -8395,7 +8890,8 @@ "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true }, "getos": { "version": "3.1.1", @@ -8729,6 +9225,7 @@ "version": "7.1.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -8742,6 +9239,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, "requires": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" @@ -8751,6 +9249,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, "requires": { "is-extglob": "^2.1.0" } @@ -8769,12 +9268,14 @@ "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true }, "globby": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", + "dev": true, "requires": { "array-union": "^1.0.1", "dir-glob": "^2.0.0", @@ -8787,7 +9288,8 @@ "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true } } }, @@ -8824,7 +9326,8 @@ "graceful-fs": { "version": "4.1.15", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "dev": true }, "growly": { "version": "1.3.0", @@ -8840,7 +9343,8 @@ "handle-thing": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.0.tgz", - "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" + "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==", + "dev": true }, "handlebars": { "version": "4.1.2", @@ -8880,6 +9384,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "requires": { "function-bind": "^1.1.1" } @@ -8888,6 +9393,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, "requires": { "ansi-regex": "^2.0.0" } @@ -8895,17 +9401,20 @@ "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true }, "has-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, "requires": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -8916,6 +9425,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, "requires": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -8925,6 +9435,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -8941,6 +9452,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, "requires": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -8950,6 +9462,7 @@ "version": "1.1.7", "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, "requires": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" @@ -8964,6 +9477,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, "requires": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", @@ -8985,6 +9499,7 @@ "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, "requires": { "inherits": "^2.0.1", "obuf": "^1.0.0", @@ -9004,7 +9519,8 @@ "html-entities": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", - "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=" + "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", + "dev": true }, "http-cache-semantics": { "version": "3.8.1", @@ -9015,12 +9531,14 @@ "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true }, "http-errors": { "version": "1.7.2", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, "requires": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -9032,12 +9550,14 @@ "http-parser-js": { "version": "0.4.10", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz", - "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=" + "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=", + "dev": true }, "http-proxy": { "version": "1.18.0", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.0.tgz", "integrity": "sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==", + "dev": true, "requires": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", @@ -9075,6 +9595,7 @@ "version": "0.19.1", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, "requires": { "http-proxy": "^1.17.0", "is-glob": "^4.0.0", @@ -9095,7 +9616,8 @@ "https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true }, "https-proxy-agent": { "version": "2.2.1", @@ -9270,6 +9792,7 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } @@ -9282,12 +9805,14 @@ "iferr": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true }, "ignore": { "version": "3.3.10", "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true }, "ignore-walk": { "version": "3.0.3", @@ -9302,6 +9827,7 @@ "version": "0.5.5", "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, "optional": true }, "immediate": { @@ -9313,6 +9839,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dev": true, "requires": { "import-from": "^2.1.0" } @@ -9321,6 +9848,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, "requires": { "caller-path": "^2.0.0", "resolve-from": "^3.0.0" @@ -9330,6 +9858,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dev": true, "requires": { "resolve-from": "^3.0.0" } @@ -9344,6 +9873,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, "requires": { "pkg-dir": "^3.0.0", "resolve-cwd": "^2.0.0" @@ -9353,6 +9883,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, "requires": { "locate-path": "^3.0.0" } @@ -9361,6 +9892,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -9370,6 +9902,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -9378,6 +9911,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, "requires": { "p-limit": "^2.0.0" } @@ -9385,12 +9919,14 @@ "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true }, "pkg-dir": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, "requires": { "find-up": "^3.0.0" } @@ -9400,7 +9936,8 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true }, "indent-string": { "version": "2.1.0", @@ -9414,12 +9951,14 @@ "infer-owner": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -9559,6 +10098,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, "requires": { "default-gateway": "^4.2.0", "ipaddr.js": "^1.9.0" @@ -9574,6 +10114,7 @@ "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, "requires": { "loose-envify": "^1.0.0" } @@ -9581,32 +10122,38 @@ "invert-kv": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==" + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "dev": true }, "ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true }, "ip-regex": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true }, "ipaddr.js": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", - "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" + "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", + "dev": true }, "is-absolute-url": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true }, "is-accessor-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -9615,6 +10162,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -9624,17 +10172,20 @@ "is-arguments": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" + "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", + "dev": true }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, "requires": { "binary-extensions": "^2.0.0" } @@ -9642,7 +10193,8 @@ "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true }, "is-callable": { "version": "1.1.4", @@ -9663,6 +10215,7 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -9671,6 +10224,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -9680,12 +10234,14 @@ "is-date-object": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true }, "is-descriptor": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -9695,29 +10251,34 @@ "kind-of": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true } } }, "is-directory": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true }, "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true }, "is-finite": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, "requires": { "number-is-nan": "^1.0.0" } @@ -9726,6 +10287,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, "requires": { "number-is-nan": "^1.0.0" } @@ -9740,6 +10302,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, "requires": { "is-extglob": "^2.1.1" } @@ -9776,6 +10339,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -9784,6 +10348,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -9799,12 +10364,14 @@ "is-path-cwd": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true }, "is-path-in-cwd": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, "requires": { "is-path-inside": "^2.1.0" }, @@ -9813,6 +10380,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, "requires": { "path-is-inside": "^1.0.2" } @@ -9831,12 +10399,14 @@ "is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true }, "is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, "requires": { "isobject": "^3.0.1" } @@ -9860,6 +10430,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, "requires": { "has": "^1.0.1" } @@ -9916,12 +10487,14 @@ "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true }, "is-wsl": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true }, "is-yarn-global": { "version": "0.3.0", @@ -9950,7 +10523,8 @@ "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true }, "isstream": { "version": "0.1.2", @@ -9961,6 +10535,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/istanbul-instrumenter-loader/-/istanbul-instrumenter-loader-3.0.1.tgz", "integrity": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==", + "dev": true, "requires": { "convert-source-map": "^1.5.0", "istanbul-lib-instrument": "^1.7.3", @@ -9972,6 +10547,7 @@ "version": "5.5.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "dev": true, "requires": { "co": "^4.6.0", "fast-deep-equal": "^1.0.0", @@ -9982,17 +10558,20 @@ "fast-deep-equal": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "dev": true }, "json-schema-traverse": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true }, "schema-utils": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", + "dev": true, "requires": { "ajv": "^5.0.0" } @@ -10002,12 +10581,14 @@ "istanbul-lib-coverage": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", - "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" + "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==", + "dev": true }, "istanbul-lib-instrument": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", "integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==", + "dev": true, "requires": { "babel-generator": "^6.18.0", "babel-template": "^6.16.0", @@ -11037,17 +11618,20 @@ "js-levenshtein": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==" + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", + "dev": true }, "js-tokens": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true }, "js-yaml": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -11115,7 +11699,8 @@ "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true }, "json-buffer": { "version": "3.0.0", @@ -11126,7 +11711,8 @@ "json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true }, "json-schema": { "version": "0.2.3", @@ -11146,12 +11732,14 @@ "json3": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true }, "json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, "requires": { "minimist": "^1.2.0" } @@ -11240,6 +11828,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", + "dev": true, "requires": { "source-map-support": "^0.5.5" } @@ -11256,12 +11845,14 @@ "killable": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true }, "kind-of": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true }, "kleur": { "version": "3.0.3", @@ -11287,6 +11878,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "dev": true, "requires": { "invert-kv": "^2.0.0" } @@ -11301,6 +11893,7 @@ "version": "3.9.0", "resolved": "https://registry.npmjs.org/less/-/less-3.9.0.tgz", "integrity": "sha512-31CmtPEZraNUtuUREYjSqRkeETFdyEHSEPAGq4erDlUXtda7pzNmctdljdIagSb589d/qXGWiiP31R5JVf+v0w==", + "dev": true, "requires": { "clone": "^2.1.2", "errno": "^0.1.1", @@ -11317,6 +11910,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "optional": true } } @@ -11325,6 +11919,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-5.0.0.tgz", "integrity": "sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg==", + "dev": true, "requires": { "clone": "^2.1.1", "loader-utils": "^1.1.0", @@ -11334,7 +11929,8 @@ "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true } } }, @@ -11385,6 +11981,7 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.1.2.tgz", "integrity": "sha512-7poZHRla+ae0eEButlwMrPpkXyhNVBf2EHePYWT0jyLnI6311/OXJkTI2sOIRungRpQgU2oDMpro5bSFPT5F0A==", + "dev": true, "requires": { "@types/webpack-sources": "^0.1.5", "webpack-sources": "^1.2.0" @@ -11592,12 +12189,14 @@ "loader-runner": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true }, "loader-utils": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, "requires": { "big.js": "^5.2.2", "emojis-list": "^2.0.0", @@ -11617,7 +12216,8 @@ "lodash": { "version": "4.17.15", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "dev": true }, "lodash._reinterpolate": { "version": "3.0.0", @@ -11628,7 +12228,8 @@ "lodash.clonedeep": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true }, "lodash.find": { "version": "4.6.0", @@ -11713,12 +12314,14 @@ "loglevel": { "version": "1.6.4", "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.4.tgz", - "integrity": "sha512-p0b6mOGKcGa+7nnmKbpzR6qloPbrgLcnio++E+14Vo/XffOGwZtRpUhr8dTH/x2oCMmEoIU0Zwm3ZauhvYD17g==" + "integrity": "sha512-p0b6mOGKcGa+7nnmKbpzR6qloPbrgLcnio++E+14Vo/XffOGwZtRpUhr8dTH/x2oCMmEoIU0Zwm3ZauhvYD17g==", + "dev": true }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } @@ -11764,6 +12367,7 @@ "version": "0.25.3", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.3.tgz", "integrity": "sha512-6QK0OpF/phMz0Q2AxILkX2mFhi7m+WMwTRg0LQKq/WBB0cDP4rYH3Wp4/d3OTXlrPLVJT/RFqj8tFeAR4nk8AA==", + "dev": true, "requires": { "sourcemap-codec": "^1.4.4" } @@ -11839,12 +12443,14 @@ "mamacro": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", - "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==" + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", + "dev": true }, "map-age-cleaner": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, "requires": { "p-defer": "^1.0.0" } @@ -11852,7 +12458,8 @@ "map-cache": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true }, "map-obj": { "version": "1.0.1", @@ -11869,6 +12476,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, "requires": { "object-visit": "^1.0.0" } @@ -11882,6 +12490,7 @@ "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, "requires": { "hash-base": "^3.0.0", "inherits": "^2.0.1", @@ -11891,12 +12500,14 @@ "media-typer": { "version": "0.3.0", "resolved": "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true }, "mem": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, "requires": { "map-age-cleaner": "^0.1.1", "mimic-fn": "^2.0.0", @@ -11907,6 +12518,7 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, "requires": { "errno": "^0.1.3", "readable-stream": "^2.0.1" @@ -11939,7 +12551,8 @@ "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true }, "merge-stream": { "version": "1.0.1", @@ -11959,12 +12572,14 @@ "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true }, "micromatch": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, "requires": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -11985,6 +12600,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, "requires": { "bn.js": "^4.0.0", "brorand": "^1.0.1" @@ -11993,7 +12609,8 @@ "mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true }, "mime-db": { "version": "1.40.0", @@ -12011,7 +12628,8 @@ "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true }, "mimic-response": { "version": "1.0.1", @@ -12023,6 +12641,7 @@ "version": "0.8.0", "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.0.tgz", "integrity": "sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw==", + "dev": true, "requires": { "loader-utils": "^1.1.0", "normalize-url": "1.9.1", @@ -12034,6 +12653,7 @@ "version": "1.9.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "dev": true, "requires": { "object-assign": "^4.0.1", "prepend-http": "^1.0.0", @@ -12044,24 +12664,28 @@ "prepend-http": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "dev": true } } }, "minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true }, "minimalistic-crypto-utils": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -12112,6 +12736,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, "requires": { "concat-stream": "^1.5.0", "duplexify": "^3.4.2", @@ -12129,6 +12754,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, "requires": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -12138,6 +12764,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { "is-plain-object": "^2.0.4" } @@ -12148,6 +12775,7 @@ "version": "0.5.1", "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, "requires": { "minimist": "0.0.8" }, @@ -12155,7 +12783,8 @@ "minimist": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true } } }, @@ -12175,6 +12804,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, "requires": { "aproba": "^1.1.1", "copy-concurrently": "^1.0.0", @@ -12193,6 +12823,7 @@ "version": "6.2.3", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, "requires": { "dns-packet": "^1.3.1", "thunky": "^1.0.2" @@ -12201,7 +12832,8 @@ "multicast-dns-service-types": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true }, "mute-stream": { "version": "0.0.7", @@ -12213,12 +12845,14 @@ "version": "2.14.0", "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", + "dev": true, "optional": true }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, "requires": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -12242,12 +12876,14 @@ "negotiator": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true }, "neo-async": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==" + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", + "dev": true }, "ng-packagr": { "version": "5.7.0", @@ -12514,7 +13150,8 @@ "node-forge": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.0.tgz", - "integrity": "sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==" + "integrity": "sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==", + "dev": true }, "node-int64": { "version": "0.4.0", @@ -12526,6 +13163,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, "requires": { "assert": "^1.1.1", "browserify-zlib": "^0.2.0", @@ -12556,6 +13194,7 @@ "version": "4.9.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "dev": true, "requires": { "base64-js": "^1.0.2", "ieee754": "^1.1.4", @@ -12565,7 +13204,8 @@ "punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true } } }, @@ -12592,6 +13232,7 @@ "version": "1.1.36", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.36.tgz", "integrity": "sha512-ggXhX6QGyJSjj3r+6ml2LqqC28XOWmKtpb+a15/Zpr9V3yoNazxJNlcQDS9bYaid5FReEWHEgToH1mwoUceWwg==", + "dev": true, "requires": { "semver": "^6.3.0" }, @@ -12599,7 +13240,8 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, @@ -12628,6 +13270,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" } @@ -12635,7 +13278,8 @@ "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true }, "normalize-url": { "version": "3.3.0", @@ -12810,12 +13454,14 @@ "num2fraction": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true }, "number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true }, "nwsapi": { "version": "2.1.4", @@ -12831,12 +13477,14 @@ "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true }, "object-copy": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, "requires": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -12847,6 +13495,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -12855,6 +13504,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -12864,17 +13514,20 @@ "object-is": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.1.tgz", - "integrity": "sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY=" + "integrity": "sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY=", + "dev": true }, "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true }, "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, "requires": { "isobject": "^3.0.0" } @@ -12883,6 +13536,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "dev": true, "requires": { "define-properties": "^1.1.2", "function-bind": "^1.1.1", @@ -12904,6 +13558,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, "requires": { "isobject": "^3.0.1" } @@ -12911,7 +13566,8 @@ "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true }, "octokit-pagination-methods": { "version": "1.1.0", @@ -12923,6 +13579,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, "requires": { "ee-first": "1.1.1" } @@ -12930,7 +13587,8 @@ "on-headers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true }, "once": { "version": "1.4.0", @@ -12950,6 +13608,7 @@ "version": "6.4.0", "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "dev": true, "requires": { "is-wsl": "^1.1.0" } @@ -12958,6 +13617,7 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, "requires": { "is-wsl": "^1.1.0" } @@ -13075,6 +13735,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, "requires": { "url-parse": "^1.4.3" } @@ -13082,7 +13743,8 @@ "os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true }, "os-homedir": { "version": "1.0.2", @@ -13094,6 +13756,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "dev": true, "requires": { "execa": "^1.0.0", "lcid": "^2.0.0", @@ -13104,6 +13767,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, "requires": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", @@ -13118,6 +13782,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, "requires": { "pump": "^3.0.0" } @@ -13159,7 +13824,8 @@ "p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true }, "p-each-series": { "version": "1.0.0", @@ -13178,7 +13844,8 @@ "p-is-promise": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", - "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==" + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true }, "p-limit": { "version": "1.3.0", @@ -13214,6 +13881,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, "requires": { "retry": "^0.12.0" }, @@ -13221,7 +13889,8 @@ "retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true } } }, @@ -13349,6 +14018,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, "requires": { "cyclist": "^1.0.1", "inherits": "^2.0.3", @@ -13384,6 +14054,7 @@ "version": "5.1.5", "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", + "dev": true, "requires": { "asn1.js": "^4.0.0", "browserify-aes": "^1.0.0", @@ -13433,12 +14104,14 @@ "parse5": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true }, "pascal-case": { "version": "2.0.1", @@ -13452,32 +14125,38 @@ "pascalcase": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true }, "path-browserify": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true }, "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true }, "path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true }, "path-is-absolute": { "version": "1.0.1", "resolved": "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true }, "path-is-inside": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true }, "path-key": { "version": "2.0.1", @@ -13487,17 +14166,20 @@ "path-parse": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true }, "path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, "requires": { "pify": "^3.0.0" }, @@ -13505,7 +14187,8 @@ "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true } } }, @@ -13521,6 +14204,7 @@ "version": "3.0.17", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, "requires": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", @@ -13543,7 +14227,8 @@ "picomatch": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.0.7.tgz", - "integrity": "sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==" + "integrity": "sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==", + "dev": true }, "pidtree": { "version": "0.3.0", @@ -13554,17 +14239,20 @@ "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true }, "pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true }, "pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, "requires": { "pinkie": "^2.0.0" } @@ -13582,6 +14270,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, "requires": { "find-up": "^3.0.0" }, @@ -13590,6 +14279,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, "requires": { "locate-path": "^3.0.0" } @@ -13598,6 +14288,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -13607,6 +14298,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -13615,6 +14307,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, "requires": { "p-limit": "^2.0.0" } @@ -13622,7 +14315,8 @@ "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true } } }, @@ -13645,6 +14339,7 @@ "version": "1.0.25", "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz", "integrity": "sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==", + "dev": true, "requires": { "async": "^2.6.2", "debug": "^3.1.1", @@ -13655,6 +14350,7 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, "requires": { "lodash": "^4.17.14" } @@ -13664,12 +14360,14 @@ "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true }, "postcss": { "version": "7.0.17", "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.17.tgz", "integrity": "sha512-546ZowA+KZ3OasvQZHsbuEpysvwTZNGJv9EfyCQdsIDltPSWHAeTQ5fQy/Npi2ZDtLI3zs7Ps/p6wThErhm9fQ==", + "dev": true, "requires": { "chalk": "^2.4.2", "source-map": "^0.6.1", @@ -13679,12 +14377,14 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -13695,6 +14395,7 @@ "version": "12.0.1", "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-12.0.1.tgz", "integrity": "sha512-3Gti33dmCjyKBgimqGxL3vcV8w9+bsHwO5UrBawp796+jdardbcFl4RP5w/76BwNL7aGzpKstIfF9I+kdE8pTw==", + "dev": true, "requires": { "postcss": "^7.0.1", "postcss-value-parser": "^3.2.3", @@ -13705,7 +14406,8 @@ "postcss-value-parser": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true } } }, @@ -13713,6 +14415,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz", "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==", + "dev": true, "requires": { "cosmiconfig": "^5.0.0", "import-cwd": "^2.0.0" @@ -13722,6 +14425,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dev": true, "requires": { "loader-utils": "^1.1.0", "postcss": "^7.0.0", @@ -13753,7 +14457,8 @@ "postcss-value-parser": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz", - "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==" + "integrity": "sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==", + "dev": true }, "prelude-ls": { "version": "1.1.2", @@ -13799,12 +14504,14 @@ "private": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==" + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true }, "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true }, "process-nextick-args": { "version": "2.0.0", @@ -13821,6 +14528,7 @@ "version": "7.3.1", "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, "optional": true, "requires": { "asap": "~2.0.3" @@ -13829,7 +14537,8 @@ "promise-inflight": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true }, "promise-retry": { "version": "1.1.1", @@ -13870,6 +14579,7 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", + "dev": true, "requires": { "forwarded": "~0.1.2", "ipaddr.js": "1.9.0" @@ -13884,7 +14594,8 @@ "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true }, "ps-tree": { "version": "1.2.0", @@ -13909,6 +14620,7 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, "requires": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", @@ -13931,6 +14643,7 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, "requires": { "duplexify": "^3.6.0", "inherits": "^2.0.3", @@ -13941,6 +14654,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -14010,6 +14724,7 @@ "version": "4.3.4", "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "dev": true, "requires": { "object-assign": "^4.1.0", "strict-uri-encode": "^1.0.0" @@ -14018,17 +14733,20 @@ "querystring": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true }, "querystring-es3": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true }, "querystringify": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz", - "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==" + "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==", + "dev": true }, "quick-lru": { "version": "1.1.0", @@ -14046,6 +14764,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, "requires": { "safe-buffer": "^5.1.0" } @@ -14054,6 +14773,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, "requires": { "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" @@ -14062,12 +14782,14 @@ "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true }, "raw-body": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, "requires": { "bytes": "3.1.0", "http-errors": "1.7.2", @@ -14078,7 +14800,8 @@ "bytes": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true } } }, @@ -14086,6 +14809,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-3.1.0.tgz", "integrity": "sha512-lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA==", + "dev": true, "requires": { "loader-utils": "^1.1.0", "schema-utils": "^2.0.1" @@ -14095,6 +14819,7 @@ "version": "6.10.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -14106,6 +14831,7 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.5.0.tgz", "integrity": "sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==", + "dev": true, "requires": { "ajv": "^6.10.2", "ajv-keywords": "^3.4.1" @@ -14135,6 +14861,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "dev": true, "requires": { "pify": "^2.3.0" } @@ -14248,6 +14975,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.2.0.tgz", "integrity": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==", + "dev": true, "requires": { "picomatch": "^2.0.4" } @@ -14289,12 +15017,14 @@ "regenerate": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==" + "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", + "dev": true }, "regenerate-unicode-properties": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz", "integrity": "sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==", + "dev": true, "requires": { "regenerate": "^1.4.0" } @@ -14302,12 +15032,14 @@ "regenerator-runtime": { "version": "0.11.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true }, "regenerator-transform": { "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.1.tgz", "integrity": "sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ==", + "dev": true, "requires": { "private": "^0.1.6" } @@ -14316,6 +15048,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, "requires": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -14325,6 +15058,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz", "integrity": "sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==", + "dev": true, "requires": { "define-properties": "^1.1.2" } @@ -14747,22 +15481,26 @@ "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true }, "repeat-element": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true }, "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true }, "repeating": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, "requires": { "is-finite": "^1.0.0" } @@ -14827,22 +15565,26 @@ "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true }, "require-main-filename": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true }, "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true }, "resolve": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.0.tgz", "integrity": "sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw==", + "dev": true, "requires": { "path-parse": "^1.0.6" } @@ -14851,6 +15593,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, "requires": { "resolve-from": "^3.0.0" } @@ -14858,7 +15601,8 @@ "resolve-from": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true }, "resolve-global": { "version": "1.0.0", @@ -14872,7 +15616,8 @@ "resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true }, "responselike": { "version": "1.0.2", @@ -14896,7 +15641,8 @@ "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true }, "retry": { "version": "0.10.1", @@ -14914,6 +15660,7 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, "requires": { "glob": "^7.1.3" } @@ -14922,6 +15669,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, "requires": { "hash-base": "^3.0.0", "inherits": "^2.0.1" @@ -15042,6 +15790,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, "requires": { "aproba": "^1.1.1" } @@ -15068,6 +15817,7 @@ "version": "1.1.0", "resolved": "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, "requires": { "ret": "~0.1.10" } @@ -15124,6 +15874,7 @@ "version": "1.22.9", "resolved": "https://registry.npmjs.org/sass/-/sass-1.22.9.tgz", "integrity": "sha512-FzU1X2V8DlnqabrL4u7OBwD2vcOzNMongEJEx3xMEhWY/v26FFR3aG0hyeu2T965sfR0E9ufJwmG+Qjz78vFPQ==", + "dev": true, "requires": { "chokidar": ">=2.0.0 <4.0.0" } @@ -15132,6 +15883,7 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-7.2.0.tgz", "integrity": "sha512-h8yUWaWtsbuIiOCgR9fd9c2lRXZ2uG+h8Dzg/AGNj+Hg/3TO8+BBAW9mEP+mh8ei+qBKqSJ0F1FLlYjNBc61OA==", + "dev": true, "requires": { "clone-deep": "^4.0.1", "loader-utils": "^1.0.1", @@ -15143,19 +15895,22 @@ "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true } } }, "sax": { "version": "0.5.8", "resolved": "http://registry.npmjs.org/sax/-/sax-0.5.8.tgz", - "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=" + "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=", + "dev": true }, "schema-utils": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, "requires": { "ajv": "^6.1.0", "ajv-errors": "^1.0.0", @@ -15165,12 +15920,14 @@ "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true }, "selfsigned": { "version": "1.10.7", "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.7.tgz", "integrity": "sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==", + "dev": true, "requires": { "node-forge": "0.9.0" } @@ -15217,6 +15974,7 @@ "version": "0.17.1", "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, "requires": { "debug": "2.6.9", "depd": "~1.1.2", @@ -15237,6 +15995,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" }, @@ -15244,26 +16003,30 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true } } }, "ms": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true } } }, "serialize-javascript": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz", - "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==" + "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==", + "dev": true }, "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, "requires": { "accepts": "~1.3.4", "batch": "0.6.1", @@ -15278,6 +16041,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -15286,6 +16050,7 @@ "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, "requires": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -15296,12 +16061,14 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "setprototypeof": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true } } }, @@ -15309,6 +16076,7 @@ "version": "1.14.1", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -15319,7 +16087,8 @@ "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true }, "set-immediate-shim": { "version": "1.0.1", @@ -15330,6 +16099,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, "requires": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", @@ -15341,6 +16111,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -15350,17 +16121,20 @@ "setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true }, "setprototypeof": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true }, "sha.js": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, "requires": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -15370,6 +16144,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, "requires": { "kind-of": "^6.0.2" } @@ -15430,7 +16205,8 @@ "slash": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=" + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true }, "slice-ansi": { "version": "0.0.4", @@ -15448,6 +16224,7 @@ "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, "requires": { "base": "^0.11.1", "debug": "^2.2.0", @@ -15463,6 +16240,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { "ms": "2.0.0" } @@ -15471,6 +16249,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -15479,6 +16258,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, "requires": { "is-extendable": "^0.1.0" } @@ -15486,12 +16266,14 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true } } }, @@ -15499,6 +16281,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, "requires": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -15509,6 +16292,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, "requires": { "is-descriptor": "^1.0.0" } @@ -15517,6 +16301,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -15525,6 +16310,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { "kind-of": "^6.0.0" } @@ -15533,6 +16319,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -15545,6 +16332,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, "requires": { "kind-of": "^3.2.0" }, @@ -15553,6 +16341,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -15563,6 +16352,7 @@ "version": "0.3.19", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", + "dev": true, "requires": { "faye-websocket": "^0.10.0", "uuid": "^3.0.1" @@ -15572,6 +16362,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.3.0.tgz", "integrity": "sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg==", + "dev": true, "requires": { "debug": "^3.2.5", "eventsource": "^1.0.7", @@ -15585,6 +16376,7 @@ "version": "0.11.3", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "dev": true, "requires": { "websocket-driver": ">=0.5.1" } @@ -15626,6 +16418,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dev": true, "requires": { "is-plain-obj": "^1.0.0" } @@ -15633,17 +16426,20 @@ "source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true }, "source-map": { "version": "0.7.3", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true }, "source-map-loader": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-0.2.4.tgz", "integrity": "sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==", + "dev": true, "requires": { "async": "^2.5.0", "loader-utils": "^1.1.0" @@ -15653,6 +16449,7 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "dev": true, "requires": { "atob": "^2.1.1", "decode-uri-component": "^0.2.0", @@ -15665,6 +16462,7 @@ "version": "0.5.10", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.10.tgz", "integrity": "sha512-YfQ3tQFTK/yzlGJuX8pTwa4tifQj4QS2Mj7UegOu8jAz59MqIiMGPXxQhVQiIMNzayuUSF/jEuVnfFF5JqybmQ==", + "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -15673,19 +16471,22 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true } } }, "source-map-url": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true }, "sourcemap-codec": { "version": "1.4.6", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz", - "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==" + "integrity": "sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==", + "dev": true }, "spdx-correct": { "version": "3.1.0", @@ -15723,6 +16524,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.1.tgz", "integrity": "sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA==", + "dev": true, "requires": { "debug": "^4.1.0", "handle-thing": "^2.0.0", @@ -15735,6 +16537,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -15745,6 +16548,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, "requires": { "debug": "^4.1.0", "detect-node": "^2.0.4", @@ -15758,6 +16562,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -15766,6 +16571,7 @@ "version": "3.4.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz", "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==", + "dev": true, "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -15778,6 +16584,7 @@ "version": "1.3.1", "resolved": "https://registry.npmjs.org/speed-measure-webpack-plugin/-/speed-measure-webpack-plugin-1.3.1.tgz", "integrity": "sha512-qVIkJvbtS9j/UeZumbdfz0vg+QfG/zxonAjzefZrqzkr7xOncLVXkeGbTpzd1gjCBM4PmVNkWlkeTVhgskAGSQ==", + "dev": true, "requires": { "chalk": "^2.0.1" } @@ -15794,6 +16601,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, "requires": { "extend-shallow": "^3.0.0" } @@ -15810,7 +16618,8 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true }, "sshpk": { "version": "1.16.1", @@ -15832,6 +16641,7 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dev": true, "requires": { "figgy-pudding": "^3.5.1" } @@ -15897,6 +16707,7 @@ "version": "0.1.2", "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, "requires": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -15906,6 +16717,7 @@ "version": "0.2.5", "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, "requires": { "is-descriptor": "^0.1.0" } @@ -15915,7 +16727,8 @@ "statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true }, "stealthy-require": { "version": "1.1.1", @@ -15927,6 +16740,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, "requires": { "inherits": "~2.0.1", "readable-stream": "^2.0.2" @@ -15944,6 +16758,7 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, "requires": { "end-of-stream": "^1.1.0", "stream-shift": "^1.0.0" @@ -15953,6 +16768,7 @@ "version": "2.8.3", "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, "requires": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.1", @@ -15964,7 +16780,8 @@ "stream-shift": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true }, "stream-to-observable": { "version": "0.1.0", @@ -15975,7 +16792,8 @@ "strict-uri-encode": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true }, "string-length": { "version": "2.0.0", @@ -16008,6 +16826,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -16037,6 +16856,7 @@ "version": "3.0.1", "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, "requires": { "ansi-regex": "^2.0.0" } @@ -16074,6 +16894,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.0.0.tgz", "integrity": "sha512-B0dOCFwv7/eY31a5PCieNwMgMhVGFe9w+rh7s/Bx8kfFkrth9zfTZquoYvdw8URgiqxObQKcpW51Ugz1HjfdZw==", + "dev": true, "requires": { "loader-utils": "^1.2.3", "schema-utils": "^2.0.1" @@ -16083,6 +16904,7 @@ "version": "6.10.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -16094,6 +16916,7 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.5.0.tgz", "integrity": "sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==", + "dev": true, "requires": { "ajv": "^6.10.2", "ajv-keywords": "^3.4.1" @@ -16105,6 +16928,7 @@ "version": "0.54.5", "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.54.5.tgz", "integrity": "sha1-QrlWCTHKcJDOhRWnmLqeaqPW3Hk=", + "dev": true, "requires": { "css-parse": "1.7.x", "debug": "*", @@ -16118,6 +16942,7 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz", "integrity": "sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -16131,6 +16956,7 @@ "version": "0.1.43", "resolved": "http://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "dev": true, "requires": { "amdefine": ">=0.0.4" } @@ -16141,6 +16967,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/stylus-loader/-/stylus-loader-3.0.2.tgz", "integrity": "sha512-+VomPdZ6a0razP+zinir61yZgpw2NfljeSsdUF5kJuEzlo3khXhY19Fn6l8QQz1GRJGtMCo8nG5C04ePyV7SUA==", + "dev": true, "requires": { "loader-utils": "^1.0.2", "lodash.clonedeep": "^4.5.0", @@ -16151,6 +16978,7 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -16170,7 +16998,8 @@ "tapable": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true }, "tar": { "version": "4.4.13", @@ -16279,6 +17108,7 @@ "version": "1.4.1", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz", "integrity": "sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg==", + "dev": true, "requires": { "cacache": "^12.0.2", "find-cache-dir": "^2.1.0", @@ -16294,12 +17124,14 @@ "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true }, "find-cache-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, "requires": { "commondir": "^1.0.1", "make-dir": "^2.0.0", @@ -16310,6 +17142,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, "requires": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -16318,17 +17151,20 @@ "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true }, "source-map-support": { "version": "0.5.13", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -16338,6 +17174,7 @@ "version": "4.3.9", "resolved": "https://registry.npmjs.org/terser/-/terser-4.3.9.tgz", "integrity": "sha512-NFGMpHjlzmyOtPL+fDw3G7+6Ueh/sz4mkaUYa4lJCxOPTNzd0Uj0aZJOmsDYoSQyfuVoWDMSWTPU3huyOm2zdA==", + "dev": true, "requires": { "commander": "^2.20.0", "source-map": "~0.6.1", @@ -16491,6 +17328,7 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, "requires": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -16499,12 +17337,14 @@ "thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true }, "timers-browserify": { "version": "2.0.11", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", + "dev": true, "requires": { "setimmediate": "^1.0.4" } @@ -16532,17 +17372,20 @@ "to-arraybuffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true }, "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, "requires": { "kind-of": "^3.0.2" }, @@ -16551,6 +17394,7 @@ "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, "requires": { "is-buffer": "^1.1.5" } @@ -16567,6 +17411,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, "requires": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -16578,6 +17423,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, "requires": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -16586,7 +17432,8 @@ "toidentifier": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true }, "topo": { "version": "3.0.3", @@ -16631,7 +17478,8 @@ "tree-kill": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.1.tgz", - "integrity": "sha512-4hjqbObwlh2dLyW4tcz0Ymw0ggoaVDMveUB9w8kFSQScdRLo0gxO9J7WFcUBo+W3C1TLdFIEwNOWebgZZ0RH9Q==" + "integrity": "sha512-4hjqbObwlh2dLyW4tcz0Ymw0ggoaVDMveUB9w8kFSQScdRLo0gxO9J7WFcUBo+W3C1TLdFIEwNOWebgZZ0RH9Q==", + "dev": true }, "trim-newlines": { "version": "1.0.0", @@ -16648,7 +17496,8 @@ "trim-right": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true }, "ts-jest": { "version": "23.1.4", @@ -16759,7 +17608,8 @@ "tty-browserify": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true }, "tunnel-agent": { "version": "0.6.0", @@ -16793,6 +17643,7 @@ "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -16801,7 +17652,8 @@ "typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true }, "typescript": { "version": "3.4.5", @@ -16839,12 +17691,14 @@ "unicode-canonical-property-names-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", - "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true }, "unicode-match-property-ecmascript": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, "requires": { "unicode-canonical-property-names-ecmascript": "^1.0.4", "unicode-property-aliases-ecmascript": "^1.0.4" @@ -16853,17 +17707,20 @@ "unicode-match-property-value-ecmascript": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz", - "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==" + "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==", + "dev": true }, "unicode-property-aliases-ecmascript": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz", - "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==" + "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==", + "dev": true }, "union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, "requires": { "arr-union": "^3.1.0", "get-value": "^2.0.6", @@ -16875,6 +17732,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, "requires": { "unique-slug": "^2.0.0" } @@ -16883,6 +17741,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, "requires": { "imurmurhash": "^0.1.4" } @@ -16925,12 +17784,14 @@ "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true }, "unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, "requires": { "has-value": "^0.3.1", "isobject": "^3.0.0" @@ -16940,6 +17801,7 @@ "version": "0.3.1", "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, "requires": { "get-value": "^2.0.3", "has-values": "^0.1.4", @@ -16950,6 +17812,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, "requires": { "isarray": "1.0.0" } @@ -16959,14 +17822,16 @@ "has-values": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true } } }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true }, "update-notifier": { "version": "3.0.1", @@ -17029,12 +17894,14 @@ "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true }, "url": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, "requires": { "punycode": "1.3.2", "querystring": "0.2.0" @@ -17043,7 +17910,8 @@ "punycode": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true } } }, @@ -17057,6 +17925,7 @@ "version": "1.4.7", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", + "dev": true, "requires": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" @@ -17080,12 +17949,14 @@ "use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true }, "util": { "version": "0.11.1", "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, "requires": { "inherits": "2.0.3" } @@ -17117,7 +17988,8 @@ "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true }, "uuid": { "version": "3.3.2", @@ -17146,7 +18018,8 @@ "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true }, "verror": { "version": "1.10.0", @@ -17161,7 +18034,8 @@ "vm-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", - "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==" + "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==", + "dev": true }, "w3c-hr-time": { "version": "1.0.1", @@ -17203,6 +18077,7 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", + "dev": true, "requires": { "chokidar": "^2.0.2", "graceful-fs": "^4.1.2", @@ -17212,12 +18087,14 @@ "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, "requires": { "anymatch": "^2.0.0", "async-each": "^1.0.1", @@ -17237,6 +18114,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, "requires": { "binary-extensions": "^1.0.0" } @@ -17244,12 +18122,14 @@ "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true }, "readdirp": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, "requires": { "graceful-fs": "^4.1.11", "micromatch": "^3.1.10", @@ -17262,6 +18142,7 @@ "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, "requires": { "minimalistic-assert": "^1.0.0" } @@ -17285,6 +18166,7 @@ "version": "4.39.2", "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.39.2.tgz", "integrity": "sha512-AKgTfz3xPSsEibH00JfZ9sHXGUwIQ6eZ9tLN8+VLzachk1Cw2LVmy+4R7ZiwTa9cZZ15tzySjeMui/UnSCAZhA==", + "dev": true, "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", @@ -17314,12 +18196,14 @@ "acorn": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.3.0.tgz", - "integrity": "sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==" + "integrity": "sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==", + "dev": true }, "ajv": { "version": "6.10.2", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "dev": true, "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -17333,6 +18217,7 @@ "version": "0.6.9", "resolved": "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz", "integrity": "sha1-/FcViMhVjad76e+23r3Fo7FyvcI=", + "dev": true, "requires": { "source-list-map": "~0.1.7", "source-map": "~0.4.1" @@ -17341,12 +18226,14 @@ "source-list-map": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", - "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=" + "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=", + "dev": true }, "source-map": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, "requires": { "amdefine": ">=0.0.4" } @@ -17357,6 +18244,7 @@ "version": "3.7.0", "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz", "integrity": "sha512-qvDesR1QZRIAZHOE3iQ4CXLZZSQ1lAUsSpnQmlB1PBfoN/xdRjmge3Dok0W4IdaVLJOGJy3sGI4sZHwjRU0PCA==", + "dev": true, "requires": { "memory-fs": "^0.4.1", "mime": "^2.4.2", @@ -17367,7 +18255,8 @@ "mime": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==" + "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", + "dev": true } } }, @@ -17375,6 +18264,7 @@ "version": "3.8.0", "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.8.0.tgz", "integrity": "sha512-Hs8K9yI6pyMvGkaPTeTonhD6JXVsigXDApYk9JLW4M7viVBspQvb1WdAcWxqtmttxNW4zf2UFLsLNe0y87pIGQ==", + "dev": true, "requires": { "ansi-html": "0.0.7", "bonjour": "^3.5.0", @@ -17414,12 +18304,14 @@ "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, "requires": { "anymatch": "^2.0.0", "async-each": "^1.0.1", @@ -17439,6 +18331,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, "requires": { "ms": "^2.1.1" } @@ -17447,6 +18340,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, "requires": { "binary-extensions": "^1.0.0" } @@ -17454,12 +18348,14 @@ "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true }, "readdirp": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, "requires": { "graceful-fs": "^4.1.11", "micromatch": "^3.1.10", @@ -17469,12 +18365,14 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -17483,6 +18381,7 @@ "version": "6.2.1", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "dev": true, "requires": { "async-limiter": "~1.0.0" } @@ -17493,6 +18392,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, "requires": { "ansi-colors": "^3.0.0", "uuid": "^3.3.2" @@ -17502,6 +18402,7 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.1.tgz", "integrity": "sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw==", + "dev": true, "requires": { "lodash": "^4.17.5" } @@ -17510,6 +18411,7 @@ "version": "1.4.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, "requires": { "source-list-map": "^2.0.0", "source-map": "~0.6.1" @@ -17518,7 +18420,8 @@ "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true } } }, @@ -17526,6 +18429,7 @@ "version": "1.1.0-rc.6", "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-1.1.0-rc.6.tgz", "integrity": "sha512-Az7y8xTniNhaA0620AV1KPwWOqawurVVDzQSpPAeR5RwNbL91GoBSJAAo9cfd+GiFHwsS5bbHepBw1e6Hzxy4w==", + "dev": true, "requires": { "webpack-core": "^0.6.8" } @@ -17534,6 +18438,7 @@ "version": "0.7.3", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz", "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==", + "dev": true, "requires": { "http-parser-js": ">=0.4.0 <0.4.11", "safe-buffer": ">=5.1.0", @@ -17543,7 +18448,8 @@ "websocket-extensions": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz", - "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==" + "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==", + "dev": true }, "wepback": { "version": "1.0.0", @@ -17580,7 +18486,8 @@ "when": { "version": "3.6.4", "resolved": "https://registry.npmjs.org/when/-/when-3.6.4.tgz", - "integrity": "sha1-RztRfsFZ4rhQBUl6E5g/CVQS404=" + "integrity": "sha1-RztRfsFZ4rhQBUl6E5g/CVQS404=", + "dev": true }, "which": { "version": "1.3.1", @@ -17593,7 +18500,8 @@ "which-module": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true }, "widest-line": { "version": "2.0.1", @@ -17732,6 +18640,7 @@ "version": "1.7.0", "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, "requires": { "errno": "~0.1.7" } @@ -17740,6 +18649,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/worker-plugin/-/worker-plugin-3.2.0.tgz", "integrity": "sha512-W5nRkw7+HlbsEt3qRP6MczwDDISjiRj2GYt9+bpe8A2La00TmJdwzG5bpdMXhRt1qcWmwAvl1TiKaHRa+XDS9Q==", + "dev": true, "requires": { "loader-utils": "^1.1.0" } @@ -17748,6 +18658,7 @@ "version": "2.1.0", "resolved": "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, "requires": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" @@ -17793,7 +18704,8 @@ "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true }, "xxhashjs": { "version": "0.2.2", @@ -17807,7 +18719,8 @@ "y18n": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true }, "yallist": { "version": "2.1.2", @@ -17819,6 +18732,7 @@ "version": "12.0.5", "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "dev": true, "requires": { "cliui": "^4.0.0", "decamelize": "^1.2.0", @@ -17837,17 +18751,20 @@ "ansi-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true }, "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true }, "find-up": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, "requires": { "locate-path": "^3.0.0" } @@ -17855,12 +18772,14 @@ "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true }, "locate-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, "requires": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -17870,6 +18789,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, "requires": { "p-try": "^2.0.0" } @@ -17878,6 +18798,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, "requires": { "p-limit": "^2.0.0" } @@ -17885,12 +18806,14 @@ "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, "requires": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" @@ -17900,6 +18823,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, "requires": { "ansi-regex": "^3.0.0" } @@ -17908,6 +18832,7 @@ "version": "11.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "dev": true, "requires": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" diff --git a/package.json b/package.json index 85021c651..6f1abd46b 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,6 @@ "pascal-case": "^2.0.1", "rxjs": "^6.4.0", "start-server-and-test": "^1.7.12", - "tslib": "^1.9.0", "zone.js": "^0.9.1" }, "devDependencies": { @@ -112,7 +111,7 @@ "terser": "^3.16.1", "ts-node": "~8.0.2", "tsickle": "^0.35.0", - "tslib": "^1.7.1", + "tslib": "^1.9.0", "tslint": "~5.9.1", "typescript": "3.4.5", "wepback": "^1.0.0" diff --git a/projects/web-codegen/src/lib/web-aggregator.service.ts b/projects/web-codegen/src/lib/web-aggregator.service.ts index ee18d9ad7..c10fbbe4d 100644 --- a/projects/web-codegen/src/lib/web-aggregator.service.ts +++ b/projects/web-codegen/src/lib/web-aggregator.service.ts @@ -24,7 +24,7 @@ export class WebAggregatorService { private readonly webContext: WebContextService, private readonly cssCodeGen: CssCodeGenService, private readonly svgCodeGen: SvgCodeGenService - ) {} + ) { } aggregate(current: SketchMSLayer, options: WebCodeGenOptions) { const fileName = this.formatService.normalizeName(current.name); @@ -110,12 +110,17 @@ export class WebAggregatorService { indent: number, options: WebCodeGenOptions ) { - const tagName = options.jsx - ? this.formatService.className(current.name) - : `${options.xmlPrefix}${this.formatService.normalizeName(current.name)}`; - template.push( - this.formatService.indent(indent, `<${tagName}>`) - ); + const context = this.webContext.of(current); + if (context && context.components && context.components.lenght > 1) { + const tagName = options.jsx + ? this.formatService.className(current.name) + : `${options.xmlPrefix}${this.formatService.normalizeName( + current.name + )}`; + template.push( + this.formatService.indent(indent, `<${tagName}>`) + ); + } } private visitBitmap(